diff --git a/frontend/src/pages/TermsPage.jsx b/frontend/src/pages/TermsPage.jsx index df37629..74ede59 100644 --- a/frontend/src/pages/TermsPage.jsx +++ b/frontend/src/pages/TermsPage.jsx @@ -1,12 +1,158 @@ export default function TermsPage() { - return( -
-
-

Terms of Service

-

- This is placeholder text. Replace with actual terms later. -

-
-
- ); -} \ No newline at end of file + const lastUpdated = "June 8, 2026"; + const version = "v1.0"; + + return ( +
+
+ {/* Title */} +

+ Terms of Service +

+ + {/* Meta */} +

+ Last Updated: {lastUpdated} • Version: {version} +

+ + {/* Intro */} +
+

+ By accessing or using this application, you agree to be bound by + these Terms of Service. If you do not agree, you must stop using the + service immediately. +

+ + {/* 1 */} +
+

1. Eligibility

+

+ You must be legally capable of entering into a binding agreement + to use this service. If you are using the service on behalf of an + organization, you confirm you have authority to do so. +

+
+ + {/* 2 */} +
+

2. User Accounts

+

+ You are responsible for maintaining the confidentiality of your + account credentials and all activities under your account. You + must notify us immediately of any unauthorized access or breach. +

+
+ + {/* 3 */} +
+

3. User Responsibilities

+

+ You agree to provide accurate information and use the service + responsibly. You are solely responsible for your actions while + using the platform. +

+
+ + {/* 4 */} +
+

4. Acceptable Use Policy

+

You agree not to:

+
    +
  • Violate any laws or regulations
  • +
  • Attempt unauthorized access to systems or accounts
  • +
  • Distribute malware or harmful code
  • +
  • Harass, abuse, or harm others
  • +
  • Scrape or extract data without permission
  • +
  • Interfere with platform security or performance
  • +
+
+ + {/* 5 */} +
+

+ 5. Data Collection & Privacy +

+

+ We may collect personal and non-personal data such as usage + information, device details, and analytics to improve our + services. We do not sell your personal data. For full details, + please refer to our Privacy Policy. +

+
+ + {/* 6 */} +
+

6. Cookies & Tracking

+

+ We may use cookies and similar technologies to enhance user + experience, analyze traffic, and improve functionality. You may + disable cookies in your browser settings. +

+
+ + {/* 7 */} +
+

7. Intellectual Property

+

+ All content, branding, design, and software are owned by the + platform or its licensors. You may not copy, modify, distribute, + or exploit any part of the service without permission. +

+
+ + {/* 8 */} +
+

8. Service Availability

+

+ We do not guarantee uninterrupted or error-free service. We may + modify, suspend, or discontinue any part of the service at any + time without notice. +

+
+ + {/* 9 */} +
+

9. Termination

+

+ We reserve the right to suspend or terminate your access if you + violate these terms or engage in harmful behavior. +

+
+ + {/* 10 */} +
+

10. Disclaimer

+

+ The service is provided “as is” without warranties of any kind, + whether express or implied, including fitness for a particular + purpose or non-infringement. +

+
+ + {/* 11 */} +
+

11. Changes to Terms

+

+ We may update these Terms at any time. Continued use of the + service after updates means you accept the revised Terms. +

+
+ + {/* 12 */} +
+

12. Accessibility

+

+ These Terms are accessible from the footer, settings, or help + section of the application at all times. +

+
+ + {/* Footer */} +

+ If you have questions about these Terms, please contact support. +

+
+
+
+ ); +}