-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (75 loc) · 3.34 KB
/
index.html
File metadata and controls
78 lines (75 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HydroBar — Your Menu Bar Water Reminder</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;
background: linear-gradient(135deg, #e0f0ff 0%, #ffffff 100%);
min-height: 100vh;
}
.container { max-width: 640px; margin: 0 auto; padding: 60px 20px; }
.hero { text-align: center; margin-bottom: 48px; }
.hero h1 { font-size: 42px; font-weight: 700; color: #111; margin-bottom: 8px; }
.hero .tagline { font-size: 18px; color: #666; margin-bottom: 24px; }
.badge { display: inline-block; }
.badge img { height: 40px; }
.features { margin-bottom: 48px; }
.features h2 { font-size: 20px; margin-bottom: 16px; color: #222; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.feature .icon { font-size: 24px; margin-bottom: 8px; }
.feature h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.feature p { font-size: 13px; color: #666; }
.links { text-align: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid #e5e5e5; }
.links a { color: #2563eb; text-decoration: none; margin: 0 12px; font-size: 14px; }
.links a:hover { text-decoration: underline; }
footer { text-align: center; margin-top: 32px; font-size: 13px; color: #999; }
</style>
</head>
<body>
<div class="container">
<div class="hero">
<h1>HydroBar</h1>
<p class="tagline">Your menu bar water reminder. Stay hydrated, stay healthy.</p>
</div>
<div class="features">
<div class="feature-grid">
<div class="feature">
<div class="icon">💧</div>
<h3>Track Every Sip</h3>
<p>Quick-add buttons and custom input. Log water in one click.</p>
</div>
<div class="feature">
<div class="icon">🎯</div>
<h3>Daily Goals</h3>
<p>Set your target and watch the beaker fill up throughout the day.</p>
</div>
<div class="feature">
<div class="icon">🔔</div>
<h3>Gentle Reminders</h3>
<p>Customizable intervals. Only reminds you when you forget.</p>
</div>
<div class="feature">
<div class="icon">🪶</div>
<h3>Lightweight</h3>
<p>Native SwiftUI. No Electron, no bloat. Lives in your menu bar.</p>
</div>
</div>
</div>
<div class="links">
<a href="privacy.html">Privacy Policy</a>
<a href="support.html">Support</a>
<a href="mailto:stack3mpty@gmail.com">Contact</a>
</div>
<footer>
<p>© 2026 stack3mpty. All rights reserved.</p>
</footer>
</div>
</body>
</html>