diff --git a/client/src/pages/privacy.jsx b/client/src/pages/privacy.jsx new file mode 100644 index 0000000..75320de --- /dev/null +++ b/client/src/pages/privacy.jsx @@ -0,0 +1,206 @@ +import { motion } from 'framer-motion'; +import { FiShield, FiMail, FiLock, FiDatabase } from 'react-icons/fi'; + +const PrivacyPolicyPage = () => { + const lastUpdated = 'May 31, 2026'; + + const sections = [ + { id: 'introduction', title: 'Introduction' }, + { id: 'information-collection', title: 'Information Collection' }, + { id: 'use-of-data', title: 'Use of User Data' }, + { id: 'cookies', title: 'Cookies & Tracking' }, + { id: 'third-party', title: 'Third-Party Services' }, + { id: 'security', title: 'Data Security' }, + { id: 'rights', title: 'User Rights' }, + { id: 'contact', title: 'Contact Information' }, + { id: 'updates', title: 'Policy Updates' }, + ]; + + return ( +
+
+ {/* Sidebar */} + + + {/* Content */} +
+ {/* Hero */} + +
+
+ +
+ +
+

+ Privacy Policy +

+

+ Last Updated: {lastUpdated} +

+
+
+ +

+ We value your privacy and are committed to protecting your + personal information. This Privacy Policy explains how we collect, + use, store, and safeguard information when you use our platform. +

+
+ + {/* Introduction */} +
+

Introduction

+ +

+ This Privacy Policy describes our practices regarding the + collection, use, and disclosure of information through our + website, applications, and related services. +

+
+ + {/* Information Collection */} +
+
+ +

Information Collection

+
+ +

+ We may collect information that you voluntarily provide, + including: +

+ +
    +
  • Name and profile details
  • +
  • Email address
  • +
  • Account credentials
  • +
  • User-generated content
  • +
  • Support communications
  • +
+
+ + {/* Use of Data */} +
+

Use of User Data

+ +
    +
  • Provide and maintain services
  • +
  • Improve user experience
  • +
  • Respond to support requests
  • +
  • Ensure platform security
  • +
  • Comply with legal obligations
  • +
+
+ + {/* Cookies */} +
+

+ Cookies & Tracking Technologies +

+ +

+ We use cookies and similar technologies to improve functionality, + remember preferences, analyze traffic, and enhance your overall + experience. +

+
+ + {/* Third Party */} +
+

Third-Party Services

+ +

+ We may use third-party providers for analytics, authentication, + cloud hosting, payments, and customer support. These providers + process information in accordance with their own privacy policies. +

+
+ + {/* Security */} +
+
+ +

Data Security

+
+ +

+ We implement reasonable administrative, technical, and + organizational safeguards designed to protect personal information + against unauthorized access, disclosure, alteration, or + destruction. +

+
+ + {/* Rights */} +
+

User Rights

+ +
    +
  • Access your personal data
  • +
  • Request correction of inaccurate data
  • +
  • Request deletion of data
  • +
  • Withdraw consent where applicable
  • +
  • Request data portability
  • +
+
+ + {/* Contact */} +
+
+ +

Contact Information

+
+ +

+ If you have questions regarding this Privacy Policy, please + contact us at: +

+ +
+

Email: privacy@yourdomain.com

+

Website: yourdomain.com

+
+
+ + {/* Updates */} +
+

Policy Updates

+ +

+ We may update this Privacy Policy periodically. Changes will be + reflected on this page along with the updated revision date. +

+
+
+
+
+ ); +}; + +export default PrivacyPolicyPage;