-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
276 lines (256 loc) · 7.67 KB
/
Copy pathprivacy.html
File metadata and controls
276 lines (256 loc) · 7.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — Toolbox</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Mono:wght@300;400;500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0f;
--bg2: #111118;
--bg3: #1a1a24;
--border: rgba(255,255,255,0.07);
--border2: rgba(255,255,255,0.14);
--accent: #5865f2;
--accent2: #7c85f5;
--text: #e8e8f0;
--muted: #7f7f9a;
--mono: 'DM Mono', monospace;
--display: 'Syne', sans-serif;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--display);
overflow-x: hidden;
line-height: 1.6;
}
body::before {
content: '';
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(88,101,242,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(88,101,242,0.03) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 0;
}
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.25rem 3rem;
background: rgba(10,10,15,0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.2rem;
font-weight: 800;
letter-spacing: -0.02em;
color: var(--text);
text-decoration: none;
}
.logo-icon {
width: 32px; height: 32px;
background: var(--accent);
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; fill: white; }
.nav-back {
color: var(--muted);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
display: flex;
align-items: center;
gap: 6px;
transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }
main {
position: relative;
z-index: 1;
max-width: 720px;
margin: 0 auto;
padding: 8rem 2rem 6rem;
}
.page-tag {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--accent2);
text-transform: uppercase;
letter-spacing: 0.12em;
margin-bottom: 1rem;
}
h1 {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -0.03em;
margin-bottom: 0.5rem;
color: var(--text);
}
.last-updated {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--muted);
margin-bottom: 3rem;
}
.divider {
height: 1px;
background: var(--border);
margin: 2.5rem 0;
}
h2 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text);
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 10px;
}
h2::before {
content: '';
display: inline-block;
width: 4px;
height: 18px;
background: var(--accent);
border-radius: 2px;
flex-shrink: 0;
}
p {
font-size: 0.92rem;
color: var(--muted);
line-height: 1.8;
margin-bottom: 1rem;
}
ul {
margin: 0.5rem 0 1rem 0;
padding-left: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 0.4rem;
}
li {
font-size: 0.92rem;
color: var(--muted);
line-height: 1.7;
padding-left: 1.25rem;
position: relative;
}
li::before {
content: '—';
position: absolute;
left: 0;
color: var(--accent2);
font-family: var(--mono);
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
footer {
position: relative;
z-index: 1;
border-top: 1px solid var(--border);
padding: 2.5rem 3rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-copy {
font-size: 0.8rem;
font-family: var(--mono);
color: var(--muted);
}
.footer-links {
display: flex;
gap: 2rem;
list-style: none;
}
.footer-links a {
font-size: 0.8rem;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
</style>
</head>
<body>
<nav>
<a href="toolbox-website.html" class="logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24"><path d="M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z"/></svg>
</div>
Toolbox
</a>
<a href="toolbox-website.html" class="nav-back">← Back to home</a>
</nav>
<main>
<div class="page-tag">// Legal</div>
<h1>Privacy Policy</h1>
<p class="last-updated">Last updated: May 2026</p>
<p>Toolbox is committed to protecting your privacy. This policy explains what data we collect, how we use it, and what rights you have over it. We keep things simple — because your privacy matters.</p>
<div class="divider"></div>
<h2>What we collect</h2>
<p>Toolbox operates primarily on your local machine. We collect minimal data:</p>
<ul>
<li>Basic usage statistics (e.g. which optimization modules are used) to improve the product</li>
<li>Crash reports, if you opt in, to help us fix bugs</li>
<li>Your email address, only if you purchase Pro through our Discord server</li>
</ul>
<p>We do <strong style="color:var(--text)">not</strong> collect personal files, documents, browser history, or any sensitive system content. All scans run locally on your device.</p>
<div class="divider"></div>
<h2>How we use your data</h2>
<ul>
<li>To improve Toolbox's features and stability</li>
<li>To verify Pro license status</li>
<li>To respond to support requests via Discord</li>
</ul>
<p>We do not sell, rent, or share your data with third parties for advertising or marketing purposes. Ever.</p>
<div class="divider"></div>
<h2>Third-party services</h2>
<p>Toolbox may interact with the following third-party platforms:</p>
<ul>
<li><strong style="color:var(--text)">GitHub</strong> — used to host and distribute the Toolbox installer</li>
<li><strong style="color:var(--text)">Discord</strong> — used for support and Pro license distribution</li>
</ul>
<p>These services have their own privacy policies. We encourage you to review them at <a href="https://github.com/ivpcodes">github.com/ivpcodes</a> and <a href="https://discord.com/privacy">discord.com/privacy</a>.</p>
<div class="divider"></div>
<h2>Data storage</h2>
<p>Any configuration or preference data Toolbox saves is stored locally on your PC. We do not upload your system data to any external server without your explicit consent.</p>
<div class="divider"></div>
<h2>Your rights</h2>
<ul>
<li>You can request deletion of any personal data we hold by contacting us on Discord</li>
<li>You can opt out of usage statistics at any time from within the app settings</li>
<li>You can uninstall Toolbox at any time — no data is retained after uninstallation</li>
</ul>
<div class="divider"></div>
<h2>Contact</h2>
<p>For any privacy-related questions, reach us on our Discord server: <a href="https://discord.gg/bJaVZQtTPt">discord.gg/bJaVZQtTPt</a></p>
</main>
<footer>
<span class="footer-copy">© 2026 Toolbox. All rights reserved.</span>
<ul class="footer-links">
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms</a></li>
<li><a href="https://discord.gg/bJaVZQtTPt">Support</a></li>
<li><a href="https://github.com/ivpcodes">GitHub</a></li>
</ul>
</footer>
</body>
</html>