-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (63 loc) · 3.74 KB
/
Copy pathindex.html
File metadata and controls
72 lines (63 loc) · 3.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FreshPath - Privacy Policy</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.7;
color: #1e293b;
background: #f8fafc;
padding: 2rem 1rem;
}
.container {
max-width: 720px;
margin: 0 auto;
background: #fff;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
h1 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.updated { color: #64748b; font-size: 0.9rem; margin-bottom: 2rem; }
h2 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
p, ul { margin-bottom: 1rem; }
ul { padding-left: 1.5rem; }
li { margin-bottom: 0.25rem; }
a { color: #3b82f6; }
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="updated">Last updated: February 11, 2026</p>
<p>FreshPath ("the App") is a personal recovery and sobriety day counter. Your privacy matters to us. This policy explains what data the App collects and how it is used.</p>
<h2>Data Storage</h2>
<p>All your data — including your start date, theme preference, diary entries, and milestone progress — is stored <strong>locally on your device</strong> using your browser's or app's local storage. Your data never leaves your device unless you choose to use the optional sync feature described below.</p>
<h2>Optional Server Sync</h2>
<p>If you access the App through a self-hosted web server, your data may be synced to that server to prevent data loss. This sync is entirely under your control and goes only to infrastructure you operate. The App does not send data to any third-party servers.</p>
<h2>Data Backup & Export</h2>
<p>The App offers an optional data backup feature that exports your data as a local file on your device. This file stays on your device and is not uploaded anywhere. You control who has access to your backup files. Future versions may offer optional cloud backup via iCloud or Google Drive, which will require your explicit opt-in consent before any data leaves your device.</p>
<h2>Data We Do Not Collect</h2>
<ul>
<li>We do not collect personal information (name, email, phone number)</li>
<li>We do not use analytics or tracking services</li>
<li>We do not use cookies for advertising or tracking</li>
<li>We do not share or sell any data to third parties</li>
<li>We do not collect location data</li>
<li>We do not require account creation</li>
</ul>
<h2>Third-Party Services</h2>
<p>The App does not integrate with any third-party analytics, advertising, or tracking services. The App uses locally bundled fonts and does not make external network requests for content delivery.</p>
<h2>Children's Privacy</h2>
<p>The App does not knowingly collect any personal information from children under 13. The App does not require any personal information to function.</p>
<h2>Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page with an updated date.</p>
<h2>Contact</h2>
<p>If you have questions about this Privacy Policy, you can contact us at <a href="mailto:FreshPath_Support@icloud.com">FreshPath_Support@icloud.com</a>.</p>
</div>
</body>
</html>