-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
59 lines (53 loc) · 2.16 KB
/
Copy pathprivacy.html
File metadata and controls
59 lines (53 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KABLOCK — Privacy Policy</title>
<style>
:root { color-scheme: light dark; }
body {
margin: 0; padding: 48px 20px; font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
background: #F3F8FD; color: #223047; line-height: 1.65;
}
@media (prefers-color-scheme: dark) { body { background: #0E1522; color: #EEF3F9; } }
main { max-width: 640px; margin: 0 auto; }
h1 { font-size: 28px; letter-spacing: -0.5px; }
h1 span { color: #19B7E8; }
h2 { font-size: 18px; margin-top: 32px; }
p, li { font-size: 15px; }
.updated { opacity: 0.6; font-size: 13px; }
</style>
</head>
<body>
<main>
<h1><span>KA</span>BLOCK — Privacy Policy</h1>
<p class="updated">Last updated: July 21, 2026</p>
<h2>The short version</h2>
<p><strong>KABLOCK collects no data. None.</strong> There are no accounts, no
analytics, no advertising, no tracking, and nothing ever leaves your device.</p>
<h2>What the app stores</h2>
<p>Your game progress — levels cleared, scores, badges, settings and local
leaderboards — is saved <strong>only on your own device</strong> using the
system's standard app storage. It is never uploaded anywhere, and deleting
the app deletes it.</p>
<h2>What the app does NOT do</h2>
<ul>
<li>No personal information is collected or requested.</li>
<li>No analytics or crash-reporting SDKs.</li>
<li>No advertising, no ad identifiers, no tracking of any kind.</li>
<li>No third-party accounts or logins.</li>
<li>No network transmission of gameplay data.</li>
</ul>
<h2>Children</h2>
<p>KABLOCK is a family-friendly puzzle game. Because the app collects no data
at all, no data is collected from children either.</p>
<h2>Changes</h2>
<p>If this policy ever changes (for example, if optional online leaderboards
are added), this page will be updated before the change ships.</p>
<h2>Contact</h2>
<p>Questions? Open an issue on the
<a href="https://github.com/jasraajdevz/kablock">KABLOCK GitHub repository</a>.</p>
</main>
</body>
</html>