-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
364 lines (312 loc) · 13.5 KB
/
privacy.html
File metadata and controls
364 lines (312 loc) · 13.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - SleepBar</title>
<meta name="description" content="SleepBar privacy policy. Learn how SleepBar handles your data — spoiler: we collect almost nothing.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://sleepbar.app/privacy">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://sleepbar.app/privacy">
<meta property="og:title" content="Privacy Policy - SleepBar">
<meta property="og:description" content="SleepBar privacy policy. Learn how SleepBar handles your data.">
<meta property="og:site_name" content="SleepBar">
<!-- Favicon -->
<link rel="icon" href="media/icon.png" type="image/png">
<link rel="apple-touch-icon" href="media/icon.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #0A84FF;
--secondary-color: #64D2FF;
--text-primary: #FFFFFF;
--text-secondary: #A1A1A6;
--background: #000000;
--background-elevated: #1C1C1E;
--card-bg: rgba(28, 28, 30, 0.9);
--card-border: rgba(255, 255, 255, 0.1);
--glass-bg: rgba(28, 28, 30, 0.7);
--header-bg: rgba(0, 0, 0, 0.8);
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background-color: var(--background);
color: var(--text-primary);
line-height: 1.6;
}
header {
background: var(--header-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--card-border);
position: sticky;
top: 0;
z-index: 100;
}
nav {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: var(--text-primary);
}
.logo-icon {
width: 120px;
height: 120px;
border-radius: 24px;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
text-decoration: none;
color: var(--text-secondary);
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--primary-color);
}
.cta-button {
background: var(--primary-color);
color: white !important;
padding: 0.5rem 1.5rem;
border-radius: 12px;
transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 4rem 2rem 6rem;
}
.content h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.effective-date {
color: var(--text-secondary);
margin-bottom: 3rem;
font-size: 0.95rem;
}
.content h2 {
font-size: 1.5rem;
font-weight: 600;
margin-top: 2.5rem;
margin-bottom: 0.75rem;
}
.content p, .content li {
color: var(--text-secondary);
margin-bottom: 1rem;
line-height: 1.7;
}
.content ul {
padding-left: 1.5rem;
margin-bottom: 1rem;
}
.content li {
margin-bottom: 0.5rem;
}
.content a {
color: var(--primary-color);
text-decoration: none;
}
.content a:hover {
text-decoration: underline;
}
.highlight-card {
background: var(--glass-bg);
border: 1px solid var(--card-border);
border-radius: 16px;
padding: 1.5rem 2rem;
margin: 2rem 0;
backdrop-filter: blur(10px);
}
.highlight-card p {
margin-bottom: 0;
color: var(--text-primary);
font-weight: 500;
}
footer {
background: var(--background-elevated);
color: var(--text-primary);
padding: 3rem 2rem;
text-align: center;
border-top: 1px solid var(--card-border);
}
.footer-links {
margin-top: 1rem;
display: flex;
gap: 2rem;
justify-content: center;
}
.footer-links a {
color: white;
text-decoration: none;
opacity: 0.8;
transition: opacity 0.2s;
}
.footer-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.footer-link svg {
transition: transform 0.2s;
}
.footer-links a:hover {
opacity: 1;
}
.footer-link:hover svg {
transform: translateY(-2px);
}
@media (max-width: 768px) {
nav {
padding: 1rem 1.5rem;
flex-wrap: wrap;
gap: 1rem;
}
.logo {
font-size: 1.25rem;
}
.nav-links {
gap: 1rem;
font-size: 0.9rem;
width: 100%;
justify-content: center;
flex-wrap: wrap;
}
.content {
padding: 2rem 1.5rem 4rem;
}
.content h1 {
font-size: 2rem;
}
footer {
padding: 2rem 1.5rem;
}
.footer-links {
flex-direction: column;
gap: 1rem;
align-items: center;
}
}
</style>
</head>
<body>
<header>
<nav>
<a href="/" class="logo">
<picture>
<source srcset="media/icon.webp" type="image/webp">
<img src="media/icon.png" alt="SleepBar Logo" class="logo-icon" width="120" height="120">
</picture>
SleepBar
</a>
<div class="nav-links">
<a href="/#features">Features</a>
<a href="/#changelog">Changelog</a>
<a href="/#download">Download</a>
<a href="https://shop.sleepbar.app/buy/8089829a-1927-4553-9b16-28aacdcfe904" class="cta-button">Buy $4.20</a>
</div>
</nav>
</header>
<main class="content">
<h1>Privacy Policy</h1>
<p class="effective-date">Effective March 8, 2026</p>
<div class="highlight-card">
<p>SleepBar collects as little data as possible. Analytics are anonymous, and we never sell or share your information with third parties.</p>
</div>
<h2>Anonymous Analytics</h2>
<p>SleepBar collects anonymous usage data to help us understand how the app is used and where to focus improvements. This data is sent via Apple's iCloud (CloudKit) infrastructure and includes:</p>
<ul>
<li>A random device identifier (UUID generated locally, not linked to your Apple ID or any personal information)</li>
<li>App version and macOS version</li>
<li>License status (licensed, trial, or expired)</li>
<li>Usage events (e.g. timer started, timer completed)</li>
</ul>
<p>This data is <strong>not</strong> linked to your identity, Apple ID, name, email, or any other personal information. It is stored in Apple's CloudKit public database.</p>
<h2>Opting Out</h2>
<p>Analytics are enabled by default. You can disable them at any time from the About window in SleepBar. When disabled, no data is sent — the preference is stored locally on your Mac and respected immediately.</p>
<h2>Licensing & Payments</h2>
<p>License purchases are processed by <a href="https://www.lemonsqueezy.com/privacy" target="_blank" rel="noopener">Lemon Squeezy</a>, our payment provider. When you purchase a license, Lemon Squeezy collects your name, email address, and payment details. SleepBar never sees or stores your payment information (credit card, billing address, etc.).</p>
<p>When you activate a license, your license key and a machine identifier are sent to Lemon Squeezy's API to verify the license. Lemon Squeezy returns your name and email address as part of the license metadata, which SleepBar stores locally on your Mac to display your license status. This information is never sent anywhere else.</p>
<p>As the developer, we can see your name, email, and purchase details through the Lemon Squeezy merchant dashboard. This data is managed by Lemon Squeezy and subject to their <a href="https://www.lemonsqueezy.com/privacy" target="_blank" rel="noopener">privacy policy</a>.</p>
<h2>Software Updates</h2>
<p>SleepBar uses the <a href="https://sparkle-project.org" target="_blank" rel="noopener">Sparkle</a> framework to check for updates. When checking, your device contacts our server to download the appcast feed. Sparkle may send basic system information (macOS version, app version) as part of the request. No personal data is included.</p>
<h2>Data We Don't Collect</h2>
<ul>
<li>Apple IDs or iCloud account information</li>
<li>Payment details (credit cards, billing addresses)</li>
<li>Location data</li>
<li>Browsing or app usage outside of SleepBar</li>
<li>Contacts, photos, files, or any on-device content</li>
<li>Advertising identifiers</li>
</ul>
<h2>Third Parties</h2>
<p>SleepBar does not share data with advertisers, data brokers, or analytics platforms. The only third parties involved are:</p>
<ul>
<li><strong>Apple (CloudKit)</strong> — anonymous telemetry storage</li>
<li><strong>Lemon Squeezy</strong> — payment processing and license validation</li>
<li><strong>GitHub</strong> — app distribution (DMG downloads)</li>
</ul>
<h2>Children's Privacy</h2>
<p>SleepBar does not knowingly collect data from children under 13. The anonymous analytics described above contain no personal information regardless of the user's age.</p>
<h2>Changes to This Policy</h2>
<p>If this policy changes, we'll update the effective date at the top of this page. For significant changes, we'll include a note in the app's changelog.</p>
<h2>Contact</h2>
<p>Questions about this policy? Email <a href="mailto:hi@sleepbar.app">hi@sleepbar.app</a>.</p>
</main>
<footer>
<p>© 2025 Nate O'Farrell. All rights reserved.</p>
<div class="footer-links">
<a href="mailto:hi@sleepbar.app" class="footer-link">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
Contact
</a>
<a href="https://github.com/zcpnate/sleepbar" class="footer-link">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
GitHub
</a>
<a href="/privacy" class="footer-link">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect>
<path d="M7 11V7a5 5 0 0 1 10 0v4"></path>
</svg>
Privacy
</a>
</div>
</footer>
</body>
</html>