Skip to content

Commit 2d84717

Browse files
committed
Add PrivacyPolicy to pages
1 parent 1f43586 commit 2d84717

File tree

2 files changed

+68
-3
lines changed

2 files changed

+68
-3
lines changed

PrivacyPolicy.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ We want to inform users of this Service that these third parties have access to
3434
### Security
3535
We value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and we cannot guarantee its absolute security.
3636

37-
### Children’s Privacy
38-
This Services do not address anyone under the age of 13. We do not knowingly collect personal identifiable information from children under 13. In the case we discover that a child under 13 has provided us with personal information, we immediately delete this from our servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact us so that we will be able to do necessary actions.
39-
4037
### Changes to This Privacy Policy
4138
We may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately, after they are posted on this page.
4239

pages/privacy-policy.tsx

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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

Comments
 (0)