|
| 1 | +import React from "react"; |
| 2 | + |
| 3 | +const PrivacyPolicy: React.FC = () => { |
| 4 | + return ( |
| 5 | + <div className="bg-slate-950 text-slate-50 flex flex-col min-h-screen"> |
| 6 | + <div className="flex-grow text-center flex items-center justify-center"> |
| 7 | + <div className="pb-6"> |
| 8 | + <h1 className="text-3xl py-10">Privacy Policy</h1> |
| 9 | + <div className="text-left px-20"> |
| 10 | + <h2 className="pb-2 text-2xl">1. Introduction</h2> |
| 11 | + <p className="pb-3"> |
| 12 | + Welcome to Fork, Commit, Merge (forkcommitmerge.io). |
| 13 | + This Privacy Policy governs your use of our website. |
| 14 | + </p> |
| 15 | + |
| 16 | + <h2 className="pb-2 text-2xl">2. Data Collection</h2> |
| 17 | + <p className="pb-1"> |
| 18 | + We collect the following data when you use our |
| 19 | + platform: |
| 20 | + </p> |
| 21 | + <ul> |
| 22 | + <li className="pl-4">- Username</li> |
| 23 | + <li className="pl-4">- Email</li> |
| 24 | + <li className="pl-4">- Name</li> |
| 25 | + </ul> |
| 26 | + |
| 27 | + <h2 className="pb-2 text-2xl">3. How We Use Your Data</h2> |
| 28 | + <p className="pb-1">We use your data to:</p> |
| 29 | + <ul className="pb-2"> |
| 30 | + <li className="pl-4"> |
| 31 | + - Facilitate your learning experience about |
| 32 | + contributing to open-source. |
| 33 | + </li> |
| 34 | + <li className="pl-4"> |
| 35 | + - Search for the number of issues you have made in |
| 36 | + our repository by looking at all the closed |
| 37 | + (merged) pull requests. |
| 38 | + </li> |
| 39 | + </ul> |
| 40 | + |
| 41 | + <h2 className="pb-2 text-2xl">4. Data Storage</h2> |
| 42 | + <p className="pb-3"> |
| 43 | + Your data is securely stored in MongoDB Atlas |
| 44 | + database. |
| 45 | + </p> |
| 46 | + |
| 47 | + <h2 className="pb-2 text-2xl">5. Data Sharing</h2> |
| 48 | + <p className="pb-3">We do not share your data with third parties.</p> |
| 49 | + |
| 50 | + <h2 className="pb-2 text-2xl">6. Cookie Policy</h2> |
| 51 | + <p className="pb-3">We do not use cookies on our website.</p> |
| 52 | + |
| 53 | + <h2 className="pb-2 text-2xl">7. Changes To This Privacy Policy</h2> |
| 54 | + <p className="pb-3">We may update this Privacy Policy in the future.</p> |
| 55 | + |
| 56 | + <h2 className="pb-2 text-2xl">8. Contact Us</h2> |
| 57 | + <p className="pb-3"> |
| 58 | + If you have any questions about this Privacy Policy, |
| 59 | + please contact us by email:{" "}niko.hoffren@gmail.com |
| 60 | + </p> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + ); |
| 66 | +}; |
| 67 | + |
| 68 | +export default PrivacyPolicy; |
0 commit comments