-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
221 lines (193 loc) · 7.51 KB
/
privacy.html
File metadata and controls
221 lines (193 loc) · 7.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - SketchCode</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0" />
<style>
:root {
--md-sys-color-primary: #6750A4;
--md-sys-color-surface: #FEF7FF;
--md-sys-color-on-surface: #1D1B20;
--md-sys-color-on-surface-variant: #49454F;
--md-sys-color-outline: #79747E;
--md-sys-color-surface-variant: #E7E0EB;
}
.material-symbols-rounded {
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
}
body {
margin: 0;
font-family: 'Roboto', sans-serif;
background-color: var(--md-sys-color-surface);
color: var(--md-sys-color-on-surface);
display: flex;
justify-content: center;
line-height: 1.6;
}
.container {
width: 100%;
max-width: 600px;
background: #fff;
padding: 24px;
min-height: 100vh;
box-shadow: 0 0 20px rgba(0,0,0,0.05);
box-sizing: border-box;
}
.header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
position: sticky;
top: 0;
background: #fff;
padding: 8px 0;
z-index: 10;
}
.back-btn {
text-decoration: none;
color: var(--md-sys-color-on-surface);
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 20px;
}
.back-btn:active { background-color: var(--md-sys-color-surface-variant); }
h1 {
font-size: 22px;
margin: 0;
font-weight: 500;
}
section { margin-bottom: 24px; }
h2 {
font-size: 16px;
font-weight: 700;
margin-bottom: 12px;
color: var(--md-sys-color-primary);
border-bottom: 1px solid var(--md-sys-color-surface-variant);
padding-bottom: 4px;
}
p, li {
font-size: 14px;
color: var(--md-sys-color-on-surface-variant);
margin: 8px 0;
}
ul { padding-left: 20px; }
.contact-box {
background: var(--md-sys-color-surface-variant);
padding: 16px;
border-radius: 16px;
margin-top: 10px;
}
/* Footer Navigation */
.footer-nav {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--md-sys-color-surface-variant);
display: flex;
flex-direction: column;
gap: 12px;
align-items: center;
}
.footer-link {
text-decoration: none;
color: var(--md-sys-color-primary);
font-size: 14px;
font-weight: 500;
}
footer {
text-align: center;
margin-top: 30px;
font-size: 12px;
color: var(--md-sys-color-outline);
padding-bottom: 24px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<a href="index.html" class="back-btn">
<span class="material-symbols-rounded">arrow_back</span>
</a>
<h1>Privacy Policy</h1>
</div>
<section>
<p><b>Last Updated:</b> January 28, 2026</p>
<p>At <b>SketchCode</b>, your privacy is our top priority. As a free platform for developers, we are committed to protecting the limited information we collect while providing you with high-quality source codes and projects.</p>
</section>
<section>
<h2>1. Information We Collect</h2>
<ul>
<li><b>Account Information:</b> Name and Email address provided via Google Sign-in to maintain your user profile.</li>
<li><b>Device Information:</b> Device model, OS version, and non-personal identifiers used strictly for app security and analytics.</li>
<li><b>Usage Data:</b> Interaction logs to help us improve app features and performance.</li>
</ul>
</section>
<section>
<h2>2. How We Use Your Information</h2>
<ul>
<li>To provide and maintain the <b>SketchCode Store</b> features.</li>
<li>To <b>personalize</b> your experience on our platform.</li>
<li>To <b>enhance security</b> and prevent unauthorized access or system exploitation.</li>
<li>For app maintenance, technical analytics, and security monitoring.</li>
</ul>
</section>
<section>
<h2>3. Data Protection & Sharing</h2>
<p>We do not sell, rent, or distribute your personal data. Information is shared only with trusted core services required to operate the application, such as user authentication.</p>
<p>Since SketchCode is now a free platform, <b>we do not process or store any financial or payment information.</b> Any voluntary support sent to developers occurs on external third-party websites and is not handled by our servers.</p>
</section>
<section>
<h2>4. Third-Party Services</h2>
<p>Our app utilizes the following essential services:</p>
<ul>
<li>Google Play Services (User Authentication)</li>
<li>Firebase (Database & Storage)</li>
</ul>
</section>
<section>
<h2>5. User Control & Data Deletion</h2>
<p>Users have full control over their account data:</p>
<ul>
<li>You may request account or data deletion at any time.</li>
<li>To request deletion, please contact us via the official email provided below.</li>
<li>Requests will be processed promptly in accordance with platform policies.</li>
</ul>
</section>
<section>
<h2>6. Children's Privacy</h2>
<p>SketchCode does not knowingly collect information from children under 13. If you believe such data has been provided, please contact us immediately for its removal.</p>
</section>
<section>
<h2>7. Contact Us</h2>
<div class="contact-box">
<p>For questions, deletion requests, or suggestions, please reach out to us:</p>
<p><b>Email:</b> <a href="mailto:codebysonu95@gmail.com" style="color:var(--md-sys-color-primary); text-decoration:none;">codebysonu95@gmail.com</a></p>
<p><b>Developer:</b> Code by Sonu</p>
</div>
</section>
<div class="footer-nav">
<a href="index.html" class="footer-link">Download App</a>
<a href="condition.html" class="footer-link">Terms & Conditions</a>
<a href="Donation.html" class="footer-link">Donation & Support Policy</a>
<a href="mailto:codebysonu95@gmail.com" class="footer-link">Contact Support</a>
</div>
<footer>
© 2026 SketchCode | All Rights Reserved.
</footer>
</div>
</body>
</html>