diff --git a/client/src/pages/PrivacyPolicy.jsx b/client/src/pages/PrivacyPolicy.jsx index a94573b0..c2ad6a3a 100644 --- a/client/src/pages/PrivacyPolicy.jsx +++ b/client/src/pages/PrivacyPolicy.jsx @@ -1,90 +1,96 @@ import React from "react"; +const sections = [ + { + title: "Introduction", + content: + "Welcome to EduBoard. Your privacy is important to us. This Privacy Policy explains how we collect, use, store, and protect your information while using our platform.", + }, + { + title: "Information We Collect", + content: + "We may collect personal information such as your name, email address, profile information, learning progress, and usage data when you interact with EduBoard.", + }, + { + title: "How We Use Your Information", + content: + "The information we collect helps us provide educational services, personalize your experience, improve platform performance, respond to support requests, and maintain security.", + }, + { + title: "Cookies & Tracking Technologies", + content: + "EduBoard may use cookies, local storage, and analytics technologies to remember preferences, improve functionality, analyze platform usage, and enhance your overall experience.", + }, + { + title: "Data Sharing", + content: + "We do not sell your personal information. We may share data only with trusted service providers that assist in operating the platform or when required by applicable law.", + }, + { + title: "Data Security", + content: + "We implement reasonable administrative and technical safeguards to protect your personal information against unauthorized access, alteration, disclosure, or destruction.", + }, + { + title: "Your Rights", + content: + "Depending on your location, you may have the right to access, update, correct, or request deletion of your personal information. You may also request information about how your data is processed.", + }, + { + title: "Third-Party Services", + content: + "EduBoard may integrate with third-party services such as authentication providers, analytics tools, or cloud hosting platforms. These providers operate under their own privacy policies.", + }, + { + title: "Children's Privacy", + content: + "Our platform is intended for educational purposes. If we become aware that personal information has been collected in violation of applicable laws, we will take appropriate steps to remove it.", + }, + { + title: "Policy Updates", + content: + "We may update this Privacy Policy from time to time to reflect changes in our services, legal requirements, or security practices. The latest revision date will always appear on this page.", + }, + { + title: "Contact Information", + content: + "If you have any questions, concerns, or requests regarding this Privacy Policy, please contact the EduBoard support team at support@eduboard.com.", + }, +]; + const PrivacyPolicy = () => { return (
-
-

Privacy Policy

- -

- Last Updated: May 2026 -

- -
- {/* Introduction */} -
-

Introduction

-

- Welcome to EduBoard. Your privacy is important to us. This Privacy - Policy explains how we collect, use, and protect your information - while using our platform. -

-
- - {/* Data Collection */} -
-

Data Collection

-

- We may collect personal information such as your name, email - address, profile details, and usage data when you interact with - EduBoard. -

-
+
+
+

+ Privacy Policy +

- {/* Use of Information */} -
-

Use of Information

-

- The collected information is used to improve user experience, - provide support, personalize content, and maintain platform - security. -

-
- - {/* Cookies */} -
-

Cookies & Tracking

-

- EduBoard may use cookies and analytics tools to understand user - behavior and improve performance. -

-
- - {/* Third Party */} -
-

- Third-Party Services -

-

- We may use trusted third-party services for authentication, - analytics, and hosting. These services may process your data - according to their own privacy policies. -

-
- - {/* User Rights */} -
-

User Rights

-

- Users have the right to access, update, or request deletion of - their personal information whenever applicable. -

-
+

+ Last Updated: May 2026 +

+
- {/* Contact */} -
-

Contact Information

-

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

+
+ {sections.map((section, index) => ( +
+

+ {section.title} +

-

support@eduboard.com

-
+

+ {section.content} +

+
+ ))}
); }; -export default PrivacyPolicy; +export default PrivacyPolicy; \ No newline at end of file