|
1 | | -import React from 'react'; |
2 | | -import "./PrivacyPolicy.css"; |
3 | | - |
4 | | -const PrivacyPolicy = () => { |
5 | | - return ( |
6 | | - <div className="privacy-container"> |
7 | | - <h1>Privacy and Policy</h1> |
8 | | - |
9 | | - <section> |
10 | | - <h2>1. Data Collection</h2> |
11 | | - <p> |
12 | | - We collect various types of information, including personal data, such as your name, |
13 | | - email address, and other contact details, as well as non-personal data, like browsing |
14 | | - behavior and device information. This data is gathered through forms, cookies, and |
15 | | - other technologies. |
16 | | - </p> |
17 | | - </section> |
18 | | - |
19 | | - <section> |
20 | | - <h2>2. Use of Information</h2> |
21 | | - <p> |
22 | | - The information we collect is used to provide and improve our services, personalize user |
23 | | - experiences, respond to your inquiries, and send you updates about our services. We may |
24 | | - also use data for research and analytics purposes. |
25 | | - </p> |
26 | | - </section> |
27 | | - |
28 | | - <section> |
29 | | - <h2>3. Data Security</h2> |
30 | | - <p> |
31 | | - We take data security seriously and implement industry-standard measures to protect |
32 | | - your information from unauthorized access, disclosure, or loss. However, no online |
33 | | - service can be 100% secure, and we cannot guarantee absolute security. |
34 | | - </p> |
35 | | - </section> |
36 | | - |
37 | | - <section> |
38 | | - <h2>4. Cookies</h2> |
39 | | - <p> |
40 | | - Cookies are small files stored on your device that help us enhance your browsing |
41 | | - experience. We use cookies to understand user behavior, track preferences, and |
42 | | - optimize site performance. You can disable cookies in your browser settings, but |
43 | | - some features of the site may not function properly. |
44 | | - </p> |
45 | | - </section> |
46 | | - |
47 | | - <section> |
48 | | - <h2>5. Third-Party Services</h2> |
49 | | - <p> |
50 | | - We may use third-party services for hosting, analytics, and advertising. These |
51 | | - third parties have their own privacy policies, and we are not responsible for |
52 | | - their practices. However, we do our best to work with reputable companies that |
53 | | - share our commitment to privacy. |
54 | | - </p> |
55 | | - </section> |
56 | | - |
57 | | - <section> |
58 | | - <h2>6. Your Rights</h2> |
59 | | - <p> |
60 | | - You have the right to access, correct, or delete your personal information. If |
61 | | - you wish to exercise any of these rights, please contact us at the provided |
62 | | - contact details. |
63 | | - </p> |
64 | | - </section> |
65 | | - |
66 | | - <section> |
67 | | - <h2>7. Policy Updates</h2> |
68 | | - <p> |
69 | | - This privacy policy may be updated periodically to reflect changes in our practices. |
70 | | - We encourage you to review this page regularly for the latest information on our |
71 | | - privacy practices. |
72 | | - </p> |
73 | | - </section> |
74 | | - </div> |
75 | | - ); |
76 | | -}; |
77 | | - |
78 | | -export default PrivacyPolicy; |
0 commit comments