-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
84 lines (77 loc) · 3.21 KB
/
Copy pathprivacy.html
File metadata and controls
84 lines (77 loc) · 3.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — Daolight</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0e0e0e;
color: #e0e0e0;
line-height: 1.7;
padding: 2rem 1.5rem;
max-width: 680px;
margin: 0 auto;
}
h1 {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 0.25rem;
}
.subtitle {
color: #888;
font-size: 0.9rem;
margin-bottom: 2.5rem;
}
h2 {
font-size: 1.1rem;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 0.75rem;
color: #f0f0f0;
}
p {
color: #aaa;
margin-bottom: 0.6rem;
font-size: 0.95rem;
}
a { color: #8ab4f8; text-decoration: none; }
a:hover { text-decoration: underline; }
.footer {
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid #222;
color: #555;
font-size: 0.8rem;
}
</style>
</head>
<body>
<h1>Privacy Policy</h1>
<p class="subtitle">Daolight — Last updated July 1, 2026</p>
<h2>Information We Collect</h2>
<p>Daolight does not require an account and does not collect personal information.</p>
<p>All quotes, reflections, favorites, notification schedules, and journey progress live only on your device.</p>
<p>If you enable iCloud backups, Apple securely syncs that data on your behalf; Daolight never receives a copy.</p>
<h2>How We Use Data</h2>
<p>Your selections (mood, Enneagram type, journey state) drive on-device personalization so the daily quote feels relevant.</p>
<p>Reflection entries never leave the device. They are stored locally and can be deleted at any time from Settings.</p>
<p>Anonymous analytics, advertising SDKs, and third-party trackers are not integrated into the app.</p>
<h2>Purchases</h2>
<p>Daolight is free and does not currently offer in-app purchases or subscriptions.</p>
<h2>Notifications & Widgets</h2>
<p>Notification schedules are stored locally and delivered by iOS.</p>
<p>Widgets use a small shared file (inside your private App Group container) to mirror the current daily quote — no network calls are made.</p>
<h2>Your Choices</h2>
<p>You can delete all app data by uninstalling Daolight or by using the reset options inside Settings.</p>
<p>To export reflections, open Journal History and use the system share sheet on any entry.</p>
<p>Notification permissions can be changed in iOS Settings › Notifications › Daolight.</p>
<h2>Contact</h2>
<p>Questions or privacy requests? Email <a href="mailto:support@daolight.app">support@daolight.app</a> and we'll respond within two business days.</p>
<div class="footer">
© 2026 Thor Matthiasson. All rights reserved.
</div>
</body>
</html>