-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
245 lines (223 loc) · 14.2 KB
/
privacy.html
File metadata and controls
245 lines (223 loc) · 14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - AIComputing101</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#165DFF',
secondary: '#7B61FF',
dark: '#1E293B',
light: '#F8FAFC'
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
}
}
}
</script>
</head>
<body class="font-inter bg-light text-dark antialiased">
<!-- Navigation -->
<header class="fixed w-full bg-white/90 backdrop-blur-sm shadow-sm z-50">
<div class="container mx-auto px-4 py-3">
<a href="index.html" class="flex items-center gap-2">
<div class="w-10 h-10 rounded-lg bg-primary flex items-center justify-center">
<i class="fas fa-bolt text-white text-xl"></i>
</div>
<span class="text-xl font-bold text-primary">AIComputing101</span>
</a>
</div>
</header>
<main class="pt-24 pb-16">
<div class="container mx-auto px-4 max-w-4xl">
<h1 class="text-4xl font-bold mb-4">Privacy Policy</h1>
<p class="text-gray-600 mb-8">Last Updated: January 15, 2025</p>
<div class="prose prose-lg max-w-none">
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">1. Introduction</h2>
<p class="text-gray-700 leading-relaxed mb-4">
AIComputing101 ("we", "us", or "our") respects your privacy and is committed to protecting your personal data. This privacy policy explains how we collect, use, and safeguard your information when you visit our website or use our services.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">2. Information We Collect</h2>
<h3 class="text-xl font-semibold mb-3 mt-6">2.1 Information You Provide</h3>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li>Email address (when you subscribe to our newsletter or contact us)</li>
<li>Name and company information (for commercial service inquiries)</li>
<li>Communication content (emails, support requests)</li>
<li>GitHub username (if you contribute to our repositories)</li>
</ul>
<h3 class="text-xl font-semibold mb-3 mt-6">2.2 Automatically Collected Information</h3>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li>Usage data (pages visited, time spent, navigation patterns)</li>
<li>Device information (browser type, operating system, IP address)</li>
<li>Referral sources and UTM parameters</li>
<li>Cookies and similar tracking technologies</li>
</ul>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">3. How We Use Your Information</h2>
<p class="text-gray-700 leading-relaxed mb-4">
We use collected information for the following purposes:
</p>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li>Providing and improving our educational resources and services</li>
<li>Sending newsletters and updates (with your consent)</li>
<li>Responding to inquiries and providing customer support</li>
<li>Analyzing website usage and improving user experience</li>
<li>Communicating about commercial service opportunities</li>
<li>Protecting against fraud and ensuring security</li>
<li>Complying with legal obligations</li>
</ul>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">4. Data Sharing and Disclosure</h2>
<p class="text-gray-700 leading-relaxed mb-4">
We do not sell your personal information. We may share your data with:
</p>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li><strong>Service Providers:</strong> Third-party services that help us operate our website (e.g., hosting, analytics, email services)</li>
<li><strong>GitHub:</strong> When you interact with our public repositories</li>
<li><strong>Legal Requirements:</strong> When required by law or to protect our rights</li>
<li><strong>Business Transfers:</strong> In connection with mergers, acquisitions, or asset sales</li>
</ul>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">5. Cookies and Tracking Technologies</h2>
<p class="text-gray-700 leading-relaxed mb-4">
We use cookies and similar technologies to:
</p>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li>Remember your preferences</li>
<li>Understand how you use our website</li>
<li>Improve website performance</li>
<li>Analyze traffic and user behavior</li>
</ul>
<p class="text-gray-700 leading-relaxed mb-4">
You can control cookies through your browser settings. However, disabling cookies may affect website functionality.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">6. Third-Party Services</h2>
<p class="text-gray-700 leading-relaxed mb-4">
Our website may use third-party services, including:
</p>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li><strong>GitHub:</strong> For hosting repositories and community collaboration</li>
<li><strong>Google Analytics:</strong> For website analytics (if implemented)</li>
<li><strong>Content Delivery Networks (CDNs):</strong> For fonts, icons, and resources</li>
<li><strong>Email Services:</strong> For newsletter delivery and communications</li>
</ul>
<p class="text-gray-700 leading-relaxed mb-4">
These services have their own privacy policies and data practices.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">7. Data Security</h2>
<p class="text-gray-700 leading-relaxed mb-4">
We implement reasonable security measures to protect your personal information, including:
</p>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li>Encryption of data in transit (HTTPS)</li>
<li>Secure storage practices</li>
<li>Access controls and authentication</li>
<li>Regular security assessments</li>
</ul>
<p class="text-gray-700 leading-relaxed mb-4">
However, no method of transmission over the internet is 100% secure, and we cannot guarantee absolute security.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">8. Data Retention</h2>
<p class="text-gray-700 leading-relaxed mb-4">
We retain your personal information only as long as necessary to:
</p>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li>Fulfill the purposes outlined in this privacy policy</li>
<li>Comply with legal and regulatory requirements</li>
<li>Resolve disputes and enforce agreements</li>
</ul>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">9. Your Rights and Choices</h2>
<p class="text-gray-700 leading-relaxed mb-4">
Depending on your location, you may have the following rights:
</p>
<ul class="list-disc pl-6 text-gray-700 space-y-2 mb-4">
<li><strong>Access:</strong> Request access to your personal data</li>
<li><strong>Correction:</strong> Request correction of inaccurate data</li>
<li><strong>Deletion:</strong> Request deletion of your personal data</li>
<li><strong>Opt-Out:</strong> Unsubscribe from marketing communications</li>
<li><strong>Data Portability:</strong> Request a copy of your data in a structured format</li>
<li><strong>Object:</strong> Object to certain data processing activities</li>
</ul>
<p class="text-gray-700 leading-relaxed mb-4">
To exercise these rights, please contact us at <a href="mailto:aicomputing101@gmail.com" class="text-primary hover:underline">aicomputing101@gmail.com</a>.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">10. Children's Privacy</h2>
<p class="text-gray-700 leading-relaxed mb-4">
Our services are not directed to children under 13 years of age. We do not knowingly collect personal information from children. If you believe we have collected information from a child, please contact us immediately.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">11. International Data Transfers</h2>
<p class="text-gray-700 leading-relaxed mb-4">
Your information may be transferred to and processed in countries other than your own. We ensure appropriate safeguards are in place to protect your data in accordance with this privacy policy.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">12. Changes to This Privacy Policy</h2>
<p class="text-gray-700 leading-relaxed mb-4">
We may update this privacy policy from time to time. We will notify you of significant changes by posting the new policy on this page with an updated "Last Updated" date. We encourage you to review this policy periodically.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">13. Contact Us</h2>
<p class="text-gray-700 leading-relaxed mb-4">
If you have questions, concerns, or requests regarding this privacy policy or our data practices, please contact us:
</p>
<p class="text-gray-700">
Email: <a href="mailto:aicomputing101@gmail.com" class="text-primary hover:underline">aicomputing101@gmail.com</a><br>
GitHub: <a href="https://github.com/AIComputing101" target="_blank" class="text-primary hover:underline">github.com/AIComputing101</a>
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">14. California Privacy Rights (CCPA)</h2>
<p class="text-gray-700 leading-relaxed mb-4">
If you are a California resident, you have additional rights under the California Consumer Privacy Act (CCPA), including the right to know what personal information we collect, the right to delete your information, and the right to opt-out of the sale of personal information (note: we do not sell personal information).
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">15. European Privacy Rights (GDPR)</h2>
<p class="text-gray-700 leading-relaxed mb-4">
If you are in the European Economic Area (EEA), you have rights under the General Data Protection Regulation (GDPR), including the right to access, rectify, erase, restrict processing, data portability, and to object to processing of your personal data.
</p>
</section>
</div>
<div class="mt-12 pt-8 border-t border-gray-200">
<a href="index.html" class="inline-flex items-center text-primary hover:underline">
<i class="fas fa-arrow-left mr-2"></i> Back to Home
</a>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-dark text-white/80 py-8">
<div class="container mx-auto px-4 text-center text-sm">
<p>© 2025 AIComputing101. All projects are open-source under MIT License.</p>
</div>
</footer>
</body>
</html>