-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
75 lines (66 loc) · 3.32 KB
/
privacy.html
File metadata and controls
75 lines (66 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HydroBar - 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: #333;
max-width: 720px;
margin: 0 auto;
padding: 40px 20px;
background: #fafafa;
}
h1 { font-size: 28px; margin-bottom: 8px; color: #111; }
h2 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; color: #222; }
p, li { font-size: 15px; margin-bottom: 12px; color: #444; }
ul { padding-left: 24px; }
.subtitle { color: #888; font-size: 14px; margin-bottom: 32px; }
.app-icon { width: 64px; height: 64px; margin-bottom: 16px; border-radius: 14px; }
a { color: #2563eb; }
hr { border: none; border-top: 1px solid #e5e5e5; margin: 32px 0; }
</style>
</head>
<body>
<h1>Privacy Policy</h1>
<p class="subtitle">HydroBar — Last updated: March 22, 2026</p>
<h2>Overview</h2>
<p>HydroBar is a macOS menu bar application that helps you track your daily water intake. We are committed to protecting your privacy. This policy explains what data HydroBar handles and how.</p>
<h2>Data Collection</h2>
<p><strong>HydroBar does not collect any personal data.</strong></p>
<p>Specifically, HydroBar:</p>
<ul>
<li>Does <strong>not</strong> collect personal information</li>
<li>Does <strong>not</strong> track your usage or behavior</li>
<li>Does <strong>not</strong> use analytics or tracking services</li>
<li>Does <strong>not</strong> contain advertising</li>
<li>Does <strong>not</strong> communicate with any external servers</li>
<li>Does <strong>not</strong> require an account or login</li>
</ul>
<h2>Data Storage</h2>
<p>All data created by HydroBar (your water intake records, daily goals, and reminder settings) is stored <strong>locally on your Mac</strong> using macOS UserDefaults. This data:</p>
<ul>
<li>Never leaves your device</li>
<li>Is not synced to any cloud service</li>
<li>Is not accessible to us or any third party</li>
<li>Is automatically removed when you delete the app</li>
</ul>
<h2>Notifications</h2>
<p>HydroBar uses macOS local notifications to remind you to drink water. These notifications are generated and delivered entirely on your device. No notification data is sent externally.</p>
<h2>Third-Party Services</h2>
<p>HydroBar does not integrate with any third-party services, SDKs, or frameworks that collect data.</p>
<h2>Children's Privacy</h2>
<p>HydroBar does not collect any data from anyone, including children under 13.</p>
<h2>Changes to This Policy</h2>
<p>If we ever update this privacy policy, the changes will be posted on this page with an updated date.</p>
<h2>Contact</h2>
<p>If you have questions about this privacy policy, please contact us at:</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<hr>
<p style="font-size: 13px; color: #999;">© 2026 HydroBar. All rights reserved.</p>
</body>
</html>