From 24ebe614fb816a4262533592a63a74fab63aa15f Mon Sep 17 00:00:00 2001 From: KamyarTaher <61198701+KamyarTaher@users.noreply.github.com> Date: Sun, 28 Jul 2024 11:07:26 +0200 Subject: [PATCH] privacy and terms page --- src/app/privacy/page.tsx | 118 +++++++++++++++++++++++++++++++++ src/app/terms/page.tsx | 140 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 258 insertions(+) create mode 100644 src/app/privacy/page.tsx create mode 100644 src/app/terms/page.tsx diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..34b0e65 --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,118 @@ +import React from "react"; +import { Navbar } from "@/components/navbar"; +import Footer from "@/components/footer"; + +const PrivacyPolicy = () => { + return ( +
+ +
+
+

+ Metacube Privacy Policy +

+ +
+
+

+ Welcome to Metacube, a platform revolutionizing the gaming + industry with blockchain technology. This privacy policy + explains how we collect, use, store, and protect your personal + information when you use Metacube's services. +

+
+ +
+

+ 1. Information Collection +

+

+ When you use Metacube, we collect necessary information to + provide and improve our services. This may include your name, + email address, and blockchain wallet address. We also collect + data related to your in-game activities and transactions. +

+
+ +
+

+ 2. Information Use +

+

+ We use your information to operate and improve Metacube, process + transactions, and provide customer support. Your data helps us + personalize your gaming experience and develop new features. +

+
+ +
+

+ 3. Data Storage and Security +

+

+ Your personal information is stored on secure servers with + restricted access. We implement industry-standard security + measures to protect your data from unauthorized access or + breaches. +

+
+ +
+

+ 4. Blockchain Transactions +

+

+ Please note that blockchain transactions are public by nature. + While we protect your personal information, transaction details + on the blockchain are visible to all participants. +

+
+ +
+

+ 5. User Rights and Choices +

+

+ You have the right to access, correct, or delete your personal + data. To exercise these rights or for any privacy-related + inquiries, please contact our support team. +

+
+ +
+

+ 6. Changes to This Privacy Policy +

+

+ We may update this privacy policy from time to time. We will + notify you of any significant changes and encourage you to + review this policy periodically. +

+
+ +
+

+ 7. Contact Us +

+

+ If you have any questions or concerns about this privacy policy + or our data handling practices, please contact our support team + at{" "} + + support@metacube.com + + . +

+
+
+
+
+
+ ); +}; + +export default PrivacyPolicy; diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx new file mode 100644 index 0000000..f31f164 --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,140 @@ +import React from "react"; +import { Navbar } from "@/components/navbar"; +import Footer from "@/components/footer"; + +const TermsOfService = () => { + return ( +
+ +
+
+

+ Metacube Terms of Service +

+ +
+
+

+ 1. Introduction +

+

+ Welcome to Metacube. By using our platform, you agree to these + Terms of Service. If you do not agree with any part of these + Terms, you may not use our services. +

+
+ +
+

+ 2. Use of Services +

+

+ Metacube provides blockchain-based gaming services. You agree to + use these services only for lawful purposes and in accordance + with these Terms. +

+
+ +
+

+ 3. User Accounts +

+

+ You are responsible for maintaining the security of your account + and wallet. Metacube is not responsible for any losses resulting + from compromised user accounts or wallets. +

+
+ +
+

+ 4. Intellectual Property +

+

+ All content and technology provided by Metacube are protected by + intellectual property laws. You may not reproduce, distribute, + or create derivative works without our permission. +

+
+ +
+

+ 5. Blockchain Transactions +

+

+ You understand that blockchain transactions are irreversible. + Metacube is not responsible for any losses due to user error or + blockchain network issues. +

+
+ +
+

+ 6. Limitation of Liability +

+

+ Metacube is not liable for any indirect, incidental, or + consequential damages arising from your use of our services or + any connected third-party services. +

+
+ +
+

+ 7. Modifications to Service +

+

+ We reserve the right to modify or discontinue our services at + any time without notice. We are not liable to you or any third + party for any modification, suspension, or discontinuance of the + service. +

+
+ +
+

+ 8. Governing Law +

+

+ These Terms shall be governed by and construed in accordance + with the laws of [Your Jurisdiction], without regard to its + conflict of law provisions. +

+
+ +
+

+ 9. Changes to Terms +

+

+ We may update these Terms from time to time. We will notify you + of any significant changes and encourage you to review these + Terms periodically. +

+
+ +
+

+ 10. Contact Us +

+

+ If you have any questions about these Terms, please contact us + at{" "} + + legal@metacube.com + + . +

+
+
+
+
+
+ ); +}; + +export default TermsOfService;