EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
Privacy.jsx
Go to the documentation of this file.
1import PublicLayout from '../components/Layout/PublicLayout';
2import './LegalPage.css';
3import { apiFetch } from '../lib/api';
4
5export default function Privacy() {
6 return (
7 <PublicLayout>
8 <div className="legal-container">
9 <h1>Privacy Policy</h1>
10 <p className="updated">Last updated: November 4, 2025</p>
11
12 <section className="legal-section">
13 <h2>Information We Collect</h2>
14 <p>
15 We collect information you provide directly to us when you create an account, use our services,
16 or communicate with us. This may include your name, email address, company information, and usage data.
17 </p>
18 </section>
19
20 <section className="legal-section">
21 <h2>How We Use Your Information</h2>
22 <p>
23 We use the information we collect to provide, maintain, and improve our services, communicate with you,
24 and ensure the security of our platform.
25 </p>
26 </section>
27
28 <section className="legal-section">
29 <h2>Data Security</h2>
30 <p>
31 We implement industry-standard security measures to protect your data, including encryption,
32 secure authentication, and regular security audits.
33 </p>
34 </section>
35
36 <section className="legal-section">
37 <h2>Your Rights</h2>
38 <p>
39 You have the right to access, update, or delete your personal information at any time.
40 Contact us at <a href="mailto:privacy@ibgmsp.com">privacy@ibgmsp.com</a> to exercise your rights.
41 </p>
42 </section>
43
44 <section className="legal-section">
45 <h2>Changes to This Policy</h2>
46 <p>
47 We may update this privacy policy from time to time. We will notify you of any changes by
48 posting the new policy on this page.
49 </p>
50 </section>
51 </div>
52 </PublicLayout>
53 );
54}