|
| 1 | +import React from 'react'; |
| 2 | + |
| 3 | +const PrivacyPolicyPage = () => { |
| 4 | + return ( |
| 5 | + <div className="container mx-auto px-4 mt-16 py-8"> |
| 6 | + <h1 className="text-3xl font-bold mb-4">Privacy Policy</h1> |
| 7 | + <p className="mb-4"> |
| 8 | + At Projest, we value the privacy of our users and are committed to protecting it. This Privacy Policy outlines how we collect, use, and handle your personal information when you use our website and services. |
| 9 | + </p> |
| 10 | + <h2 className="text-2xl font-bold mb-4">Information We Collect</h2> |
| 11 | + <p className="mb-4"> |
| 12 | + When you use Projest, we may collect the following types of information: |
| 13 | + </p> |
| 14 | + <ul className="list-disc list-inside mb-4"> |
| 15 | + <li>Information about the projects you upload, including project details and associated GitHub links</li> |
| 16 | + <li>Information about your interactions with the website, such as browsing history and search queries</li> |
| 17 | + </ul> |
| 18 | + <h2 className="text-2xl font-bold mb-4">How We Use Your Information</h2> |
| 19 | + <p className="mb-4"> |
| 20 | + We may use the information we collect for the following purposes: |
| 21 | + </p> |
| 22 | + <ul className="list-disc list-inside mb-4"> |
| 23 | + <li>To provide and improve our services</li> |
| 24 | + <li>To personalize your experience and tailor the content and features to your interests</li> |
| 25 | + <li>To communicate with you regarding your account and project uploads</li> |
| 26 | + <li>To analyze and monitor the usage of our website and services</li> |
| 27 | + </ul> |
| 28 | + <h2 className="text-2xl font-bold mb-4">Information Sharing and Disclosure</h2> |
| 29 | + <p className="mb-4"> |
| 30 | + We do not sell, trade, or otherwise transfer your personal information to third parties without your consent. However, we may share your information in the following circumstances: |
| 31 | + </p> |
| 32 | + <ul className="list-disc list-inside mb-4"> |
| 33 | + <li>With your consent or at your direction</li> |
| 34 | + <li>With service providers and partners who assist us in delivering and improving our services</li> |
| 35 | + <li>If required by law or to protect the rights, property, or safety of Projest, our users, or others</li> |
| 36 | + </ul> |
| 37 | + <h2 className="text-2xl font-bold mb-4">Security</h2> |
| 38 | + <p className="mb-4"> |
| 39 | + We take reasonable measures to protect the information we collect from unauthorized access, disclosure, alteration, or destruction. However, please be aware that no method of transmission over the internet or electronic storage is completely secure. |
| 40 | + </p> |
| 41 | + <h2 className="text-2xl font-bold mb-4">Changes to this Privacy Policy</h2> |
| 42 | + <p className="mb-4"> |
| 43 | + We may update this Privacy Policy from time to time. Any changes will be posted on this page, and the revised policy will become effective when posted. We encourage you to review this Privacy Policy periodically for any updates or changes. |
| 44 | + </p> |
| 45 | + <h2 className="text-2xl font-bold mb-4">Contact Us</h2> |
| 46 | + <p className="mb-4"> |
| 47 | + If you have any questions or concerns about this Privacy Policy or our privacy practices, please contact us at coderflame3@gmail.com. |
| 48 | + </p> |
| 49 | + </div> |
| 50 | + ); |
| 51 | +}; |
| 52 | + |
| 53 | +export default PrivacyPolicyPage; |
0 commit comments