-
Notifications
You must be signed in to change notification settings - Fork 354
/
cookie.html
396 lines (345 loc) · 11.9 KB
/
cookie.html
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Privacy Policy - BuddyTrail</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<style>
:root {
--primary-color: #2563eb;
--secondary-color: #1e40af;
--text-color: #374151;
--bg-color: #ffffff;
--toc-bg: #f8fafc;
--border-color: #e2e8f0;
--header-height: 70px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: #f1f5f9;
color: var(--text-color);
line-height: 1.6;
}
header {
background: var(--bg-color);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
height: var(--header-height);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo img {
height: 40px;
width: auto;
}
.logo h1 {
font-size: 1.5rem;
color: var(--primary-color);
margin: 0;
}
.container {
max-width: 1200px;
margin: calc(var(--header-height) + 40px) auto 40px;
padding: 0 20px;
display: grid;
grid-template-columns: 300px 1fr;
gap: 40px;
}
.toc {
background: var(--toc-bg);
padding: 30px;
border-radius: 12px;
position: sticky;
top: calc(var(--header-height) + 20px);
height: fit-content;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.toc h2 {
font-size: 1.25rem;
color: var(--primary-color);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--border-color);
}
.toc ul {
list-style: none;
}
.toc ul li {
margin-bottom: 12px;
}
.toc ul li a {
color: var(--text-color);
text-decoration: none;
font-size: 0.95rem;
transition: color 0.2s;
display: block;
padding: 8px 12px;
border-radius: 6px;
}
.toc ul li a:hover {
background-color: #e2e8f0;
color: var(--primary-color);
}
.main-content {
background: var(--bg-color);
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.main-content h1 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 40px;
text-align: center;
padding-bottom: 20px;
border-bottom: 3px solid var(--border-color);
}
.main-content h2 {
font-size: 1.5rem;
color: var(--secondary-color);
margin: 40px 0 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--border-color);
}
.main-content p {
margin-bottom: 20px;
font-size: 1rem;
color: var(--text-color);
}
.main-content ul {
margin: 0 0 20px 20px;
}
.main-content ul li {
margin-bottom: 10px;
position: relative;
padding-left: 20px;
}
.main-content ul li::before {
content: "•";
color: var(--primary-color);
position: absolute;
left: 0;
}
.contact-info {
background: #f8fafc;
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}
.contact-info a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.2s;
}
.contact-info a:hover {
color: var(--secondary-color);
}
/* Dark mode styles */
body.dark-mode {
--primary-color: #60a5fa;
--secondary-color: #93c5fd;
--text-color: #e5e7eb;
--bg-color: #1f2937;
--toc-bg: #111827;
--border-color: #374151;
}
.mode-toggle {
background: none;
border: none;
cursor: pointer;
padding: 8px;
border-radius: 50%;
transition: background-color 0.2s;
}
.mode-toggle:hover {
background-color: #f1f5f9;
}
.dark-mode .mode-toggle:hover {
background-color: #374151;
}
.sun-icon, .moon-icon {
width: 24px;
height: 24px;
}
/* Responsive design */
@media (max-width: 968px) {
.container {
grid-template-columns: 1fr;
}
.toc {
position: relative;
top: 0;
}
.main-content {
padding: 20px;
}
.main-content h1 {
font-size: 2rem;
}
}
@media (max-width: 640px) {
.nav-container {
padding: 0 10px;
}
.logo h1 {
font-size: 1.25rem;
}
.container {
padding: 0 10px;
margin-top: calc(var(--header-height) + 20px);
}
}
</style>
<style>
/* circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 24px;
background-color: rgb(255, 0, 0);
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
}
</style>
</head>
<body>
<header>
<div class="nav-container">
<div class="logo">
<img src="/api/placeholder/40/40" alt="BuddyTrail Logo" />
<h1>BuddyTrail</h1>
</div>
<button class="mode-toggle" id="modeToggle">
<img src="/api/placeholder/24/24" alt="Theme toggle" class="sun-icon" />
</button>
</div>
</header>
<div class="container">
<div class="toc">
<h2>Contents</h2>
<ul>
<li><a href="#section1">1. Information We Collect</a></li>
<li><a href="#section2">2. How We Use Your Information</a></li>
<li><a href="#section3">3. Sharing Your Information</a></li>
<li><a href="#section4">4. Data Security</a></li>
<li><a href="#section5">5. Your Data Protection Rights</a></li>
<li><a href="#section6">6. Changes to This Privacy Policy</a></li>
<li><a href="#section7">7. Contact Us</a></li>
</ul>
</div>
<div class="main-content">
<h1>Privacy Policy</h1>
<section id="section1">
<h2>1. Information We Collect</h2>
<p>When you visit BuddyTrail, we collect the following information:</p>
<ul>
<li>Personal identification information (Name, email address, phone number)</li>
<li>Device and usage information (IP address, browser type, browsing actions)</li>
<li>Any information you voluntarily provide to us through contact forms</li>
</ul>
</section>
<section id="section2">
<h2>2. How We Use Your Information</h2>
<p>We use the information we collect in the following ways:</p>
<ul>
<li>To provide, operate, and maintain our website and services</li>
<li>To improve our services and your user experience</li>
<li>To respond to your inquiries and provide customer support</li>
<li>To analyze and understand how you use our website</li>
<li>To send updates, marketing, and promotional materials (with consent)</li>
</ul>
</section>
<section id="section3">
<h2>3. Sharing Your Information</h2>
<p>We do not sell or trade your personal information. However, we may share your data in the following cases:</p>
<ul>
<li>With trusted third-party service providers who assist in operating our website</li>
<li>As required by law, to comply with legal obligations</li>
<li>With your explicit consent for specific purposes</li>
</ul>
</section>
<section id="section4">
<h2>4. Data Security</h2>
<p>We implement various security measures to protect your personal data. However, no method of transmission over the Internet or electronic storage is completely secure, and we cannot guarantee its absolute security.</p>
</section>
<section id="section5">
<h2>5. Your Data Protection Rights</h2>
<p>You have the right to:</p>
<ul>
<li>Access the personal data we hold about you</li>
<li>Request correction of any inaccuracies in your data</li>
<li>Request deletion of your personal data</li>
<li>Withdraw consent at any time for data processing</li>
</ul>
</section>
<section id="section6">
<h2>6. Changes to This Privacy Policy</h2>
<p>We reserve the right to update or change this Privacy Policy at any time. Any changes will be posted on this page, and the updated policy will take effect immediately upon posting.</p>
</section>
<section id="section7">
<h2>7. Contact Us</h2>
<div class="contact-info">
<p>If you have any questions or concerns about this Privacy Policy, please contact us:</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: <a href="tel:+1234567890">+123 456 7890</a></p>
</div>
</section>
</div>
</div>
<script>
const modeToggle = document.getElementById('modeToggle');
const body = document.body;
modeToggle.addEventListener('click', () => {
body.classList.toggle('dark-mode');
});
// Circle animation script
const circles = Array.from({ length: 5 }, () => {
const circle = document.createElement('div');
circle.classList.add('circle');
document.body.appendChild(circle);
return circle;
});
let mouseX = 0;
let mouseY = 0;
document.addEventListener('mousemove', e => {
mouseX = e.pageX;
mouseY = e.pageY;
});
const animateCircles = () => {
circles.forEach((circle, i) => {
setTimeout(() => {
circle.style.left = `${mouseX}px`;
circle.style.top = `${mouseY}px`;
}, i * 50);
});
requestAnimationFrame(animateCircles);
};
animateCircles();
</script>
</body>
</html>