Skip to content

Commit ffeb4ff

Browse files
Copilotanshaneja5
andcommitted
Add comprehensive content to Privacy Policy and Terms of Use pages
Co-authored-by: anshaneja5 <128882734+anshaneja5@users.noreply.github.com>
1 parent a40f127 commit ffeb4ff

File tree

2 files changed

+264
-4
lines changed

2 files changed

+264
-4
lines changed

src/components/PrivacyPolicy.jsx

Lines changed: 98 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,104 @@ const PrivacyPolicy = () => {
2222
Privacy Policy
2323
</h1>
2424
<div className={`prose dark:prose-invert lg:prose-xl mx-auto mt-8 ${darkMode ? 'text-gray-300' : 'text-gray-700'}`}>
25-
<p>This is a placeholder for the Privacy Policy page. Content will be added here soon.</p>
26-
<p>We are committed to protecting your privacy. This policy will outline how we collect, use, and safeguard your information.</p>
25+
<p className="text-sm mb-8">Last Updated: November 2025</p>
26+
27+
<h2 className="text-2xl font-bold mt-8 mb-4">Introduction</h2>
28+
<p>
29+
Welcome to mldl.study. We respect your privacy and are committed to protecting your personal information.
30+
This Privacy Policy explains how we collect, use, and safeguard information when you use our website.
31+
</p>
32+
33+
<h2 className="text-2xl font-bold mt-8 mb-4">Information We Collect</h2>
34+
<h3 className="text-xl font-semibold mt-6 mb-3">Local Storage Data</h3>
35+
<p>
36+
Our website uses browser local storage to save your learning progress, preferences, and settings.
37+
This data is stored locally on your device and is not transmitted to our servers. The information includes:
38+
</p>
39+
<ul className="list-disc ml-6 mb-4">
40+
<li>Your progress on various learning roadmaps and topics</li>
41+
<li>Dark mode preference</li>
42+
<li>Bookmarked questions and resources</li>
43+
<li>Modal dismissal preferences</li>
44+
</ul>
45+
46+
<h3 className="text-xl font-semibold mt-6 mb-3">Analytics Data</h3>
47+
<p>
48+
We use Google Analytics 4 to understand how visitors use our website. This helps us improve the user experience.
49+
Google Analytics may collect:
50+
</p>
51+
<ul className="list-disc ml-6 mb-4">
52+
<li>Pages visited and time spent on pages</li>
53+
<li>Browser type and device information</li>
54+
<li>Geographic location (country/city level)</li>
55+
<li>Referral sources</li>
56+
</ul>
57+
58+
<h2 className="text-2xl font-bold mt-8 mb-4">How We Use Your Information</h2>
59+
<p>We use the collected information to:</p>
60+
<ul className="list-disc ml-6 mb-4">
61+
<li>Provide and maintain the learning platform functionality</li>
62+
<li>Track your personal learning progress across sessions</li>
63+
<li>Understand usage patterns to improve our content and features</li>
64+
<li>Analyze website performance and user engagement</li>
65+
</ul>
66+
67+
<h2 className="text-2xl font-bold mt-8 mb-4">Data Storage and Security</h2>
68+
<p>
69+
All user-specific data (progress, preferences) is stored locally in your browser&apos;s local storage.
70+
We do not collect, store, or transmit this personal data to our servers. You have full control over this
71+
data and can clear it at any time through your browser settings.
72+
</p>
73+
74+
<h2 className="text-2xl font-bold mt-8 mb-4">Third-Party Services</h2>
75+
<h3 className="text-xl font-semibold mt-6 mb-3">Google Analytics</h3>
76+
<p>
77+
We use Google Analytics 4, which may use cookies to collect anonymous usage data. You can opt-out of
78+
Google Analytics tracking by installing the Google Analytics Opt-out Browser Add-on.
79+
</p>
80+
81+
<h3 className="text-xl font-semibold mt-6 mb-3">External Links</h3>
82+
<p>
83+
Our website contains links to external resources, including YouTube videos and other educational content.
84+
These third-party websites have their own privacy policies, and we are not responsible for their practices.
85+
</p>
86+
87+
<h2 className="text-2xl font-bold mt-8 mb-4">Your Rights</h2>
88+
<p>You have the right to:</p>
89+
<ul className="list-disc ml-6 mb-4">
90+
<li>Access and review your locally stored data through browser developer tools</li>
91+
<li>Delete your local data by clearing your browser&apos;s local storage</li>
92+
<li>Opt-out of analytics tracking through browser settings or extensions</li>
93+
<li>Use the website without accepting analytics cookies</li>
94+
</ul>
95+
96+
<h2 className="text-2xl font-bold mt-8 mb-4">Children&apos;s Privacy</h2>
97+
<p>
98+
Our website does not specifically target children under 13. We do not knowingly collect personal
99+
information from children. If you believe a child has provided information to us, please contact us
100+
so we can take appropriate action.
101+
</p>
102+
103+
<h2 className="text-2xl font-bold mt-8 mb-4">Changes to This Policy</h2>
104+
<p>
105+
We may update this Privacy Policy from time to time. We will notify users of any material changes by
106+
updating the &quot;Last Updated&quot; date at the top of this policy. Your continued use of the website after
107+
such changes constitutes acceptance of the updated policy.
108+
</p>
109+
110+
<h2 className="text-2xl font-bold mt-8 mb-4">Contact Us</h2>
111+
<p>
112+
If you have any questions or concerns about this Privacy Policy, please contact us through our
113+
GitHub repository at{' '}
114+
<a
115+
href="https://github.com/anshaneja5/mldl.study"
116+
target="_blank"
117+
rel="noopener noreferrer"
118+
className={darkMode ? 'text-blue-400 hover:text-blue-300' : 'text-blue-600 hover:text-blue-700'}
119+
>
120+
github.com/anshaneja5/mldl.study
121+
</a>
122+
</p>
27123
</div>
28124
</div>
29125
</div>

src/components/TermsOfUse.jsx

Lines changed: 166 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,172 @@ const TermsOfUse = () => {
2222
Terms of Use
2323
</h1>
2424
<div className={`prose dark:prose-invert lg:prose-xl mx-auto mt-8 ${darkMode ? 'text-gray-300' : 'text-gray-700'}`}>
25-
<p>This is a placeholder for the Terms of Use page. Content will be added here soon.</p>
26-
<p>By using this website, you will be agreeing to the terms and conditions outlined in this document.</p>
25+
<p className="text-sm mb-8">Last Updated: November 2025</p>
26+
27+
<h2 className="text-2xl font-bold mt-8 mb-4">1. Acceptance of Terms</h2>
28+
<p>
29+
By accessing and using mldl.study (&quot;the Website&quot;), you accept and agree to be bound by these Terms of Use.
30+
If you do not agree to these terms, please do not use the Website.
31+
</p>
32+
33+
<h2 className="text-2xl font-bold mt-8 mb-4">2. Description of Service</h2>
34+
<p>
35+
mldl.study is a free educational platform that provides curated learning resources, roadmaps, and materials
36+
for Machine Learning, Deep Learning, and Artificial Intelligence. The service includes:
37+
</p>
38+
<ul className="list-disc ml-6 mb-4">
39+
<li>Interactive learning roadmaps for ML/DL topics</li>
40+
<li>Curated video content and educational resources</li>
41+
<li>Progress tracking features stored locally in your browser</li>
42+
<li>Question banks and practice materials</li>
43+
<li>Research paper recommendations</li>
44+
</ul>
45+
46+
<h2 className="text-2xl font-bold mt-8 mb-4">3. Use License</h2>
47+
<p>
48+
Permission is granted to access and use the Website for personal, non-commercial educational purposes.
49+
This license does not include:
50+
</p>
51+
<ul className="list-disc ml-6 mb-4">
52+
<li>Modifying or copying the Website&apos;s materials without permission</li>
53+
<li>Using the materials for commercial purposes</li>
54+
<li>Attempting to decompile or reverse engineer any software on the Website</li>
55+
<li>Removing any copyright or proprietary notations from the materials</li>
56+
<li>Transferring the materials to another person or mirroring on another server</li>
57+
</ul>
58+
59+
<h2 className="text-2xl font-bold mt-8 mb-4">4. Educational Purpose</h2>
60+
<p>
61+
All content on this Website is provided for educational purposes only. The roadmaps, resources, and
62+
materials are curated to help learners navigate their journey in ML/DL, but we make no guarantees about:
63+
</p>
64+
<ul className="list-disc ml-6 mb-4">
65+
<li>The completeness or accuracy of the content</li>
66+
<li>Career outcomes or employment opportunities</li>
67+
<li>Certification or academic credit</li>
68+
<li>The availability of linked external resources</li>
69+
</ul>
70+
71+
<h2 className="text-2xl font-bold mt-8 mb-4">5. External Links and Resources</h2>
72+
<p>
73+
The Website contains links to external resources, including YouTube videos, articles, and other educational
74+
platforms. These links are provided for convenience, and we do not:
75+
</p>
76+
<ul className="list-disc ml-6 mb-4">
77+
<li>Control or endorse the content of external websites</li>
78+
<li>Take responsibility for the availability or accuracy of external resources</li>
79+
<li>Guarantee that external links will remain functional</li>
80+
<li>Assume liability for any harm or damages from using external resources</li>
81+
</ul>
82+
83+
<h2 className="text-2xl font-bold mt-8 mb-4">6. User Conduct</h2>
84+
<p>You agree not to use the Website to:</p>
85+
<ul className="list-disc ml-6 mb-4">
86+
<li>Violate any applicable laws or regulations</li>
87+
<li>Transmit any harmful, offensive, or inappropriate content</li>
88+
<li>Attempt to gain unauthorized access to the Website or its systems</li>
89+
<li>Interfere with or disrupt the Website&apos;s functionality</li>
90+
<li>Collect or harvest information about other users</li>
91+
<li>Use automated systems (bots, scrapers) without permission</li>
92+
</ul>
93+
94+
<h2 className="text-2xl font-bold mt-8 mb-4">7. Intellectual Property</h2>
95+
<p>
96+
The Website&apos;s design, structure, and organization are protected by intellectual property rights.
97+
The curated content, roadmaps, and original materials are either:
98+
</p>
99+
<ul className="list-disc ml-6 mb-4">
100+
<li>Owned by mldl.study</li>
101+
<li>Licensed from third parties</li>
102+
<li>Linked from publicly available educational resources</li>
103+
</ul>
104+
<p>
105+
All linked content (videos, articles, papers) remains the property of their respective owners and
106+
is subject to their own terms of use.
107+
</p>
108+
109+
<h2 className="text-2xl font-bold mt-8 mb-4">8. Disclaimer of Warranties</h2>
110+
<p>
111+
The Website and its content are provided &quot;as is&quot; without warranties of any kind, either express or implied.
112+
We do not warrant that:
113+
</p>
114+
<ul className="list-disc ml-6 mb-4">
115+
<li>The Website will be error-free or uninterrupted</li>
116+
<li>Defects will be corrected</li>
117+
<li>The Website is free of viruses or harmful components</li>
118+
<li>The results from using the Website will meet your expectations</li>
119+
<li>The information provided is complete, accurate, or current</li>
120+
</ul>
121+
122+
<h2 className="text-2xl font-bold mt-8 mb-4">9. Limitation of Liability</h2>
123+
<p>
124+
To the fullest extent permitted by law, mldl.study shall not be liable for any direct, indirect,
125+
incidental, consequential, or special damages arising from:
126+
</p>
127+
<ul className="list-disc ml-6 mb-4">
128+
<li>Use or inability to use the Website</li>
129+
<li>Loss of data or progress stored in local storage</li>
130+
<li>Reliance on information provided on the Website</li>
131+
<li>Errors, omissions, or inaccuracies in the content</li>
132+
<li>Third-party content or external links</li>
133+
</ul>
134+
135+
<h2 className="text-2xl font-bold mt-8 mb-4">10. User-Generated Content</h2>
136+
<p>
137+
If the Website allows user contributions or feedback in the future, you grant mldl.study a non-exclusive,
138+
royalty-free, perpetual license to use, modify, and display such content for educational purposes.
139+
</p>
140+
141+
<h2 className="text-2xl font-bold mt-8 mb-4">11. Modifications to Service</h2>
142+
<p>
143+
We reserve the right to modify, suspend, or discontinue any part of the Website at any time without
144+
notice. We may also update these Terms of Use periodically. Your continued use of the Website after
145+
changes constitutes acceptance of the new terms.
146+
</p>
147+
148+
<h2 className="text-2xl font-bold mt-8 mb-4">12. Privacy</h2>
149+
<p>
150+
Your use of the Website is also governed by our Privacy Policy. Please review our Privacy Policy to
151+
understand how we handle information.
152+
</p>
153+
154+
<h2 className="text-2xl font-bold mt-8 mb-4">13. Governing Law</h2>
155+
<p>
156+
These Terms of Use shall be governed by and construed in accordance with applicable laws, without
157+
regard to conflict of law provisions.
158+
</p>
159+
160+
<h2 className="text-2xl font-bold mt-8 mb-4">14. Open Source</h2>
161+
<p>
162+
This project is open source and welcomes contributions. By contributing to the project, you agree
163+
that your contributions will be licensed under the same license as the project.
164+
</p>
165+
166+
<h2 className="text-2xl font-bold mt-8 mb-4">15. Contact Information</h2>
167+
<p>
168+
If you have questions about these Terms of Use, please contact us through our GitHub repository at{' '}
169+
<a
170+
href="https://github.com/anshaneja5/mldl.study"
171+
target="_blank"
172+
rel="noopener noreferrer"
173+
className={darkMode ? 'text-blue-400 hover:text-blue-300' : 'text-blue-600 hover:text-blue-700'}
174+
>
175+
github.com/anshaneja5/mldl.study
176+
</a>
177+
</p>
178+
179+
<h2 className="text-2xl font-bold mt-8 mb-4">16. Severability</h2>
180+
<p>
181+
If any provision of these Terms of Use is found to be unenforceable or invalid, that provision shall
182+
be limited or eliminated to the minimum extent necessary, and the remaining provisions shall remain
183+
in full force and effect.
184+
</p>
185+
186+
<h2 className="text-2xl font-bold mt-8 mb-4">Acknowledgment</h2>
187+
<p>
188+
By using mldl.study, you acknowledge that you have read, understood, and agree to be bound by these
189+
Terms of Use.
190+
</p>
27191
</div>
28192
</div>
29193
</div>

0 commit comments

Comments
 (0)