-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
137 lines (116 loc) · 5.03 KB
/
privacy.html
File metadata and controls
137 lines (116 loc) · 5.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - PixelLearn</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #FF6B6B 0%, #9B59B6 50%, #3498DB 100%);
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
h1 {
color: #9B59B6;
margin-bottom: 10px;
font-size: 32px;
}
.subtitle {
color: #666;
margin-bottom: 30px;
font-size: 14px;
}
h2 {
color: #FF6B6B;
margin-top: 30px;
margin-bottom: 15px;
font-size: 24px;
}
p {
margin-bottom: 15px;
color: #555;
}
ul {
margin-bottom: 15px;
margin-left: 20px;
}
li {
margin-bottom: 8px;
color: #555;
}
a {
color: #9B59B6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
color: #999;
font-size: 14px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="subtitle">Last updated: December 2, 2024</p>
<h2>Introduction</h2>
<p>Welcome to PixelLearn ("we," "our," or "us"). We are committed to protecting your privacy, especially when it comes to children. This Privacy Policy explains how we handle information when you use our iOS application.</p>
<h2>Information We Collect</h2>
<p>PixelLearn is designed with privacy as a priority. We do not collect, store, or share any personal information about you or your children. Specifically:</p>
<ul>
<li><strong>No Personal Data Collection:</strong> We do not collect names, email addresses, phone numbers, or any other personally identifiable information.</li>
<li><strong>No Usage Analytics:</strong> We do not track how you use the app or collect analytics data.</li>
<li><strong>No Third-Party Tracking:</strong> We do not use third-party analytics, advertising, or tracking services.</li>
<li><strong>No Advertisements:</strong> The app contains no ads and does not integrate with any advertising networks.</li>
</ul>
<h2>How We Use Your Information</h2>
<p>Since we don't collect any information, we don't use, share, or sell any of your data.</p>
<h2>Data Storage</h2>
<p>All user data, including profiles, scores, and progress, is stored locally on your device using Apple's SwiftData framework. This data never leaves your device and is not uploaded to any servers. The data includes:</p>
<ul>
<li>Profile names (chosen by you)</li>
<li>Correct answer counts</li>
<li>Win counts</li>
<li>Current difficulty levels per subject</li>
</ul>
<p>This data is stored solely to provide the app's functionality and is fully under your control.</p>
<h2>Offline Functionality</h2>
<p>PixelLearn works completely offline. No internet connection is required to use any features of the app.</p>
<h2>Permissions</h2>
<p>PixelLearn does not request any special device permissions. The app does not access your photos, camera, microphone, location, or contacts.</p>
<h2>Children's Privacy</h2>
<p>PixelLearn is designed for children and families. We are committed to complying with the Children's Online Privacy Protection Act (COPPA). Since we do not collect any personal information from anyone, including children under 13, the app is safe for all ages.</p>
<h2>Changes to This Privacy Policy</h2>
<p>We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page and updating the "Last updated" date.</p>
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us at:</p>
<p><a href="mailto:support@pixellearnapp.com">support@pixellearnapp.com</a></p>
<div class="footer">
<p>© 2024 PixelLearn. All rights reserved.</p>
<p><a href="terms.html">Terms of Use</a> | <a href="support.html">Support</a></p>
</div>
</div>
</body>
</html>