-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathprivacy.html
More file actions
406 lines (356 loc) · 15.2 KB
/
Copy pathprivacy.html
File metadata and controls
406 lines (356 loc) · 15.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
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
397
398
399
400
401
402
403
404
405
406
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - StikDebug</title>
<meta name="title" content="Privacy Policy - StikDebug">
<meta name="description" content="How StikDebug and the StikDebug website handle your data. Short version: we don't collect it.">
<meta name="author" content="StephenDev0">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://stikdebug.xyz/privacy.html">
<meta property="og:type" content="website">
<meta property="og:url" content="https://stikdebug.xyz/privacy.html">
<meta property="og:title" content="Privacy Policy - StikDebug">
<meta property="og:description" content="How StikDebug and the StikDebug website handle your data. Short version: we don't collect it.">
<meta property="og:image" content="https://stikdebug.xyz/assets/icon.png">
<meta property="og:site_name" content="StikDebug">
<meta property="og:locale" content="en_US">
<link rel="icon" type="image/png" href="assets/icon.png">
<link rel="preload" href="assets/fonts/Geist-Variable.woff2" as="font" type="font/woff2" crossorigin>
<style>
@font-face {
font-family: "Geist";
src: url("assets/fonts/Geist-Variable.woff2") format("woff2");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}
:root {
color-scheme: dark;
--bg: #000000;
--bg-alt: #0a0a0b;
--text: #f5f5f7;
--muted: #86868b;
--hairline: rgba(255, 255, 255, 0.10);
--hairline-strong: rgba(255, 255, 255, 0.20);
--fill: rgba(255, 255, 255, 0.055);
--fill-hover: rgba(255, 255, 255, 0.10);
--card: #121214;
--accent: #2997ff;
--accent-hover: #47a6ff;
--accent-soft: rgba(41, 151, 255, 0.14);
--shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4);
--nav-bg: rgba(0, 0, 0, 0.65);
--font: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
:root[data-theme="light"] {
color-scheme: light;
--bg: #ffffff;
--bg-alt: #f5f5f7;
--text: #1d1d1f;
--muted: #6e6e73;
--hairline: rgba(0, 0, 0, 0.10);
--hairline-strong: rgba(0, 0, 0, 0.16);
--fill: rgba(0, 0, 0, 0.04);
--fill-hover: rgba(0, 0, 0, 0.07);
--card: #ffffff;
--accent: #0071e3;
--accent-hover: #0077ed;
--accent-soft: rgba(0, 113, 227, 0.10);
--shadow-card: 0 1px 2px rgba(0, 0, 0, 0.05);
--nav-bg: rgba(255, 255, 255, 0.72);
}
* { box-sizing: border-box; }
html {
scroll-behavior: smooth;
background: var(--bg);
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
background: var(--bg);
color: var(--muted);
font-family: var(--font);
font-size: 1.0625rem;
line-height: 1.5;
letter-spacing: -0.01em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: background-color 300ms ease, color 300ms ease;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img, svg { display: block; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
color: var(--text);
letter-spacing: -0.025em;
line-height: 1.1;
font-weight: 600;
}
.container {
width: min(100% - 2.5rem, 48rem);
margin-inline: auto;
}
/* ---------- Navigation ---------- */
.nav {
position: fixed;
inset: 0 0 auto 0;
z-index: 100;
border-bottom: 1px solid transparent;
transition: background-color 250ms ease, border-color 250ms ease;
}
.nav.is-scrolled {
background: var(--nav-bg);
border-bottom-color: var(--hairline);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner {
display: flex;
align-items: center;
height: 3.25rem;
gap: 1rem;
width: min(100% - 2.5rem, 70rem);
margin-inline: auto;
}
.brand {
display: flex;
align-items: center;
gap: 0.6rem;
color: var(--text);
font-weight: 600;
font-size: 1.05rem;
letter-spacing: -0.02em;
}
.brand img {
width: 1.85rem;
height: 1.85rem;
border-radius: 0.5rem;
}
.nav-actions {
display: flex;
align-items: center;
gap: 0.5rem;
margin-left: auto;
}
.icon-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.25rem;
height: 2.25rem;
border: none;
border-radius: 0.6rem;
background: transparent;
color: var(--muted);
cursor: pointer;
transition: color 160ms ease, background-color 160ms ease;
}
.icon-btn:hover {
color: var(--text);
background: var(--fill);
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
height: 2.1rem;
padding: 0 1.05rem;
border-radius: 980px;
border: 1px solid var(--hairline-strong);
font-family: inherit;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: -0.01em;
white-space: nowrap;
color: var(--text);
background: transparent;
cursor: pointer;
transition: background-color 200ms ease, color 200ms ease;
}
.btn:hover { background: var(--fill); color: var(--text); }
/* ---------- Document ---------- */
.doc {
padding-top: 8rem;
padding-bottom: 5rem;
}
.doc-head { margin-bottom: 3rem; }
.kicker {
display: block;
margin-bottom: 0.9rem;
color: var(--accent);
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.doc-head h1 {
font-size: clamp(2.25rem, 5vw, 3.25rem);
font-weight: 700;
}
.doc-head .updated {
margin-top: 1rem;
font-size: 0.95rem;
color: var(--muted);
}
.lead {
margin-top: 1.4rem;
font-size: 1.2rem;
line-height: 1.5;
color: var(--text);
}
.doc section { margin-top: 2.75rem; }
.doc h2 {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 0.85rem;
}
.doc p { margin-bottom: 1rem; }
.doc p:last-child { margin-bottom: 0; }
.doc code {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
font-size: 0.9em;
padding: 0.1rem 0.4rem;
border-radius: 0.35rem;
background: var(--fill);
color: var(--text);
}
.doc ul {
margin: 0 0 1rem;
padding-left: 1.25rem;
}
.doc li { margin-bottom: 0.5rem; }
.callout {
margin-top: 1.25rem;
padding: 1.4rem 1.5rem;
border: 1px solid var(--hairline);
border-radius: 1.1rem;
background: var(--card);
box-shadow: var(--shadow-card);
color: var(--text);
}
.callout strong { color: var(--text); }
/* ---------- Footer ---------- */
.footer {
border-top: 1px solid var(--hairline);
padding: 3rem 0;
text-align: center;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.4rem 1.4rem;
margin-bottom: 1.5rem;
}
.footer-links a {
color: var(--muted);
font-size: 0.9rem;
font-weight: 500;
transition: color 160ms ease;
}
.footer-links a:hover { color: var(--text); }
.footer p { font-size: 0.82rem; color: var(--muted); }
.footer p + p { margin-top: 0.4rem; opacity: 0.75; }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
</style>
</head>
<body>
<header class="nav" id="nav">
<div class="nav-inner">
<a class="brand" href="index.html" aria-label="StikDebug home">
<img src="assets/icon.png" alt="" aria-hidden="true">
<span>StikDebug</span>
</a>
<div class="nav-actions">
<a class="btn" href="index.html">Back to home</a>
<button class="icon-btn" type="button" id="theme-toggle" aria-label="Toggle theme">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" aria-hidden="true">
<path d="M12 3v2.2M12 18.8V21M4.2 4.2l1.55 1.55M18.25 18.25l1.55 1.55M3 12h2.2M18.8 12H21M4.2 19.8l1.55-1.55M18.25 5.75l1.55-1.55" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="12" r="4.2" stroke="currentColor" stroke-width="2"/>
</svg>
</button>
</div>
</div>
</header>
<main>
<article class="container doc">
<div class="doc-head">
<span class="kicker">Privacy</span>
<h1>Privacy Policy</h1>
<p class="updated">Last updated: June 24, 2026</p>
<p class="lead">This privacy policy covers the StikDebug website at stikdebug.xyz. The short version: it doesn't collect your data.</p>
</div>
<div class="callout">
<strong>The short version:</strong> This website has no accounts, no analytics, and no tracking. It's a static site that simply serves pages to your browser. The only data handling comes from our hosting and security providers, described below.
</div>
<section>
<h2>Information we collect</h2>
<p>None. This website does not collect, store, or sell any personal information. There are no accounts to create, no forms to submit, and no analytics, advertising, or tracking scripts of any kind.</p>
</section>
<section>
<h2>Cookies and local storage</h2>
<p>This site does not set any cookies of its own and uses no advertising or analytics cookies. Our security provider, Cloudflare, may set a strictly necessary cookie (such as <code>__cf_bm</code> or <code>cf_clearance</code>) to protect the site from abuse and verify that you are a real visitor. These are used only for security and are not used to track you.</p>
<p>The only thing the site itself stores is your light or dark theme preference, which is kept locally in your browser using <code>localStorage</code>. That preference stays on your device and is never sent anywhere.</p>
</section>
<section>
<h2>Hosting and delivery</h2>
<p>This website is a static site hosted on GitHub Pages and delivered through Cloudflare, which acts as a content delivery network and security proxy. As with any web server, these providers may automatically process standard technical information (such as IP addresses and browser type) to serve the site and protect it from abuse.</p>
<p>That data is handled by those providers, not by us, under <a href="https://docs.github.com/site-policy/privacy-policies/github-general-privacy-statement" target="_blank" rel="noopener noreferrer">GitHub's privacy statement</a> and <a href="https://www.cloudflare.com/privacypolicy/" target="_blank" rel="noopener noreferrer">Cloudflare's privacy policy</a>.</p>
</section>
<section>
<h2>Third-party links</h2>
<p>This site relies on or links to third-party services such as GitHub, Cloudflare, and Discord. Those services have their own privacy policies, and we encourage you to review them. We are not responsible for the practices of services we do not operate.</p>
</section>
<section>
<h2>Open source</h2>
<p>This website is open source. You can review exactly what it does by reading the code on <a href="https://github.com/StephenDev0/Website-Stuff" target="_blank" rel="noopener noreferrer">GitHub</a>.</p>
</section>
<section>
<h2>Changes to this policy</h2>
<p>If this policy changes, the updated version will be posted on this page with a new "last updated" date.</p>
</section>
<section>
<h2>Contact</h2>
<p>Questions about privacy? Reach out on the <a href="https://discord.gg/mACqxMxP3X" target="_blank" rel="noopener noreferrer">Discord</a> or open an issue on <a href="https://github.com/StephenDev0/Website-Stuff/issues" target="_blank" rel="noopener noreferrer">GitHub</a>.</p>
</section>
</article>
</main>
<footer class="footer">
<div class="container">
<div class="footer-links">
<a href="index.html">Home</a>
<a href="privacy.html">Privacy Policy</a>
<a href="https://github.com/StephenDev0/Website-Stuff" target="_blank" rel="noopener noreferrer">Source Code</a>
</div>
<p>© 2026 StephenDev0. All rights reserved.</p>
<p>StikDebug is a tool for developers and enthusiasts. Not affiliated with Apple Inc.</p>
</div>
</footer>
<script>
(() => {
const root = document.documentElement;
root.dataset.theme = window.localStorage.getItem("theme") === "light" ? "light" : "dark";
const nav = document.getElementById("nav");
const themeToggle = document.getElementById("theme-toggle");
themeToggle?.addEventListener("click", () => {
const next = root.dataset.theme === "light" ? "dark" : "light";
root.dataset.theme = next;
window.localStorage.setItem("theme", next);
});
const onScroll = () => nav.classList.toggle("is-scrolled", window.scrollY > 8);
onScroll();
window.addEventListener("scroll", onScroll, { passive: true });
})();
</script>
</body>
</html>