-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
231 lines (210 loc) · 10.2 KB
/
about.html
File metadata and controls
231 lines (210 loc) · 10.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>About — Smoke Free</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#080808">
<meta name="description" content="Smoke Free is a free quit smoking tracker built for accountability. Track your streaks, compete with friends on a leaderboard. No ads, no paywalls.">
<meta name="keywords" content="quit smoking app, smoke free, cigarette tracker, smoking cessation, about">
<link rel="canonical" href="https://www.smokefreetimer.com/about.html">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.smokefreetimer.com/about.html">
<meta property="og:title" content="About — Smoke Free">
<meta property="og:description" content="Smoke Free is a free quit smoking tracker built for accountability. No ads, no paywalls.">
<meta property="og:image" content="https://www.smokefreetimer.com/feature-graphic.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="About — Smoke Free">
<meta name="twitter:description" content="Smoke Free is a free quit smoking tracker built for accountability. No ads, no paywalls.">
<meta name="twitter:image" content="https://www.smokefreetimer.com/feature-graphic.png">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<style>
:root {
--bg:#080808; --surface:#101010; --border:#1c1c1c; --border2:#282828;
--accent:#c8f560; --accent-dim:#7a9938; --text:#f0f0f0;
--muted2:#999; --danger:#ff4455; --success:#60f5a0;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
background:var(--bg); color:var(--text); font-family:'DM Mono',monospace;
min-height:100vh; display:flex; flex-direction:column;
}
body::after {
content:''; position:fixed; top:0; right:0; bottom:0; left:0; pointer-events:none; z-index:9998;
background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.nav {
display:flex; align-items:center; justify-content:space-between;
padding:0 24px; height:54px; border-bottom:1px solid var(--border);
background:var(--surface); position:sticky; top:0; z-index:100;
}
.nav-logo { font-family:'Bebas Neue',sans-serif; font-size:26px; letter-spacing:5px; color:var(--accent); text-decoration:none; }
.nav-back { background:none; border:1px solid var(--border2); color:var(--muted2); font-family:'DM Mono',monospace; font-size:10px; letter-spacing:2px; text-transform:uppercase; padding:6px 12px; border-radius:2px; cursor:pointer; transition:all 0.2s; text-decoration:none; display:inline-block; }
.nav-back:hover { border-color:var(--muted2); color:var(--text); }
.content { flex:1; padding:48px 24px 40px; max-width:640px; width:100%; margin:0 auto; }
.page-title {
font-family:'Bebas Neue',sans-serif; font-size:42px; letter-spacing:8px;
color:var(--accent); margin-bottom:8px; animation:fadeUp 0.4s ease both;
}
.page-subtitle {
font-size:10px; letter-spacing:3px; text-transform:uppercase;
color:var(--muted2); margin-bottom:48px; animation:fadeUp 0.4s ease 0.05s both;
}
.section { margin-bottom:40px; animation:fadeUp 0.4s ease 0.1s both; }
.section-title {
font-family:'Bebas Neue',sans-serif; font-size:20px; letter-spacing:4px;
color:var(--accent); margin-bottom:16px; padding-bottom:8px;
border-bottom:1px solid var(--border);
}
.section p {
font-size:12px; line-height:2; color:var(--text); margin-bottom:12px;
}
.section p:last-child { margin-bottom:0; }
.card {
background:var(--surface); border:1px solid var(--border); border-radius:4px;
padding:28px; position:relative; margin-bottom:24px;
}
.card::before {
content:''; position:absolute; top:0; left:0; right:0; height:2px;
background:linear-gradient(90deg,transparent,var(--accent),transparent);
}
.feature-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.feature-list li { font-size:12px; color:var(--text); line-height:1.8; display:flex; align-items:flex-start; gap:10px; }
.feature-list li::before { content:'▸'; color:var(--accent); flex-shrink:0; margin-top:1px; }
.tech-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:12px; }
.tech-item {
background:#0a0a0a; border:1px solid var(--border2); border-radius:2px;
padding:12px 14px; font-size:11px; letter-spacing:1px;
}
.tech-item .tech-name { color:var(--accent); margin-bottom:4px; font-size:10px; letter-spacing:2px; text-transform:uppercase; }
.tech-item .tech-desc { color:#bbb; font-size:10px; }
.license-box {
background:#0a0a0a; border:1px solid var(--border2); border-radius:2px;
padding:20px; font-size:11px; line-height:2; color:#bbb;
white-space:pre-wrap; font-family:'DM Mono',monospace;
}
.license-box .highlight { color:var(--text); }
.site-footer {
border-top:1px solid var(--border); padding:20px 24px;
text-align:center; font-size:10px; letter-spacing:2px; color:var(--muted2);
display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
}
.site-footer a { color:var(--muted2); text-decoration:none; transition:color 0.2s; }
.site-footer a:hover { color:var(--accent); }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
</style>
</head>
<body>
<nav class="nav">
<a class="nav-logo" href="index.html">SMOKE FREE</a>
<a class="nav-back" href="index.html">← Back</a>
</nav>
<div class="content">
<div class="page-title">About Us</div>
<div class="page-subtitle">Smoke Free — Track your resistance</div>
<div class="section">
<div class="card">
<div class="section-title">Our Mission</div>
<p>
Smoke Free is a minimalist tool built for people who want to quit smoking — or at least
understand their habits better. We believe accountability and community are the two most
powerful forces in breaking a dependency.
</p>
<p>
Track how long you resist the urge. Compete (or collaborate) with friends. Celebrate
milestones. No ads, no paywalls, no noise.
</p>
</div>
</div>
<div class="section">
<div class="card">
<div class="section-title">What It Does</div>
<ul class="feature-list">
<li>Timer that counts every second since your last cigarette</li>
<li>Session log that records each resistance streak you complete</li>
<li>Personal best tracking so you always have a goal to beat</li>
<li>Friends system — send requests, accept connections, cheer each other on</li>
<li>Live leaderboard ranked by current resistance time</li>
<li>Profile with custom username and avatar</li>
<li>Fully responsive — works on phone, tablet, and desktop</li>
</ul>
</div>
</div>
<div class="section">
<div class="card">
<div class="section-title">Built With</div>
<div class="tech-grid">
<div class="tech-item">
<div class="tech-name">HTML / CSS / JS</div>
<div class="tech-desc">Vanilla — zero build step</div>
</div>
<div class="tech-item">
<div class="tech-name">Supabase</div>
<div class="tech-desc">Auth, database & storage</div>
</div>
<div class="tech-item">
<div class="tech-name">Font Awesome</div>
<div class="tech-desc">Icon library</div>
</div>
<div class="tech-item">
<div class="tech-name">Google Fonts</div>
<div class="tech-desc">Bebas Neue & DM Mono</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="card">
<div class="section-title">License</div>
<p style="font-size:11px;color:#bbb;margin-bottom:16px;">
Smoke Free is open source and released under the MIT License.
</p>
<div class="license-box"><span class="highlight">MIT License
Copyright (c) 2026 Smoke Free</span>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</div>
</div>
</div>
</div>
<footer class="site-footer">
<span>© 2026 Smoke Free</span>
<span>·</span>
<a href="privacy.html">Privacy</a>
<span>·</span>
<span>Released under the MIT License</span>
<span>·</span>
<a href="index.html">Sign In</a>
</footer>
<script>
document.fonts.ready.then(() => {
const c = document.createElement('canvas');
c.width = c.height = 64;
const ctx = c.getContext('2d');
ctx.fillStyle = '#111';
ctx.beginPath(); ctx.arc(32,32,32,0,Math.PI*2); ctx.fill();
ctx.fillStyle = '#c8f560';
ctx.font = '900 52px "Font Awesome 6 Free"';
ctx.textAlign = 'center'; ctx.textBaseline = 'middle';
ctx.fillText('\uf54d', 32, 34);
const link = document.querySelector("link[rel~='icon']");
if (link) link.href = c.toDataURL();
});
</script>
</body>
</html>