-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
245 lines (241 loc) · 6.59 KB
/
index.html
File metadata and controls
245 lines (241 loc) · 6.59 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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>echofit — Track Your Health by Talking to AI</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0D1117;
color: #E6EDF3;
min-height: 100vh;
padding: 2rem;
}
.container {
max-width: 720px;
margin: 0 auto;
text-align: center;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, #A78BFA, #EC4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.tagline {
font-size: 1.2rem;
color: #C9D1D9;
margin-bottom: 1.5rem;
}
.description {
font-size: 1rem;
line-height: 1.8;
color: #8B949E;
margin-bottom: 3rem;
max-width: 560px;
margin-left: auto;
margin-right: auto;
}
.example {
background: #161B22;
border: 1px solid #30363D;
border-radius: 12px;
padding: 1.5rem 2rem;
margin-bottom: 3rem;
text-align: left;
font-size: 0.95rem;
line-height: 1.8;
color: #C9D1D9;
}
.example .user {
color: #A78BFA;
}
.example .agent {
color: #8B949E;
font-style: italic;
}
h2 {
font-size: 1.3rem;
font-weight: 600;
color: #E6EDF3;
margin-bottom: 1rem;
text-align: left;
}
.section {
margin-bottom: 3rem;
}
.cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
text-align: left;
}
.card {
background: #161B22;
border: 1px solid #30363D;
border-radius: 8px;
padding: 1.2rem;
}
.card h3 {
font-size: 0.95rem;
color: #A78BFA;
margin-bottom: 0.4rem;
}
.card p {
font-size: 0.85rem;
color: #8B949E;
line-height: 1.5;
}
.works-with {
text-align: left;
margin-bottom: 3rem;
}
.works-with h2 {
margin-bottom: 0.8rem;
}
.platform-group {
margin-bottom: 1.2rem;
}
.platform-group-label {
font-size: 0.75rem;
color: #484F58;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.4rem;
}
.platforms {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.platform {
background: #161B22;
border: 1px solid #30363D;
border-radius: 20px;
padding: 0.35rem 0.9rem;
font-size: 0.85rem;
color: #C9D1D9;
}
.platform.coming {
border-style: dashed;
color: #8B949E;
}
.links {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 1rem;
}
.links a {
display: inline-block;
padding: 0.6rem 1.4rem;
border-radius: 6px;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: opacity 0.2s;
}
.links a:hover { opacity: 0.85; }
.btn-primary {
background: #A78BFA;
color: #0D1117;
}
.btn-secondary {
background: transparent;
color: #A78BFA;
border: 1px solid #30363D;
}
footer {
text-align: center;
color: #484F58;
font-size: 0.8rem;
margin-top: 2rem;
padding-bottom: 2rem;
}
footer a {
color: #58A6FF;
text-decoration: none;
}
.domain-suffix {
font-size: 2.5rem;
font-weight: 400;
color: rgba(167,139,250,0.45);
}
@media (max-width: 480px) {
.cards { grid-template-columns: 1fr; }
h1 { font-size: 2rem; }
.domain-suffix { font-size: 2rem; }
.example { padding: 1rem 1.2rem; }
}
</style>
</head>
<body>
<div class="container">
<img src="brand/echofit-logo-512.png" alt="echofit logo" style="width:80px;height:80px;border-radius:16px;margin-bottom:1rem;">
<div style="display:flex;align-items:baseline;justify-content:center;"><h1 style="margin-bottom:0;">echofit</h1><span class="domain-suffix">.ai</span></div>
<p class="tagline">Track your health by talking to AI</p>
<p class="description">
Tell your AI assistant what you ate, how you worked out, or your blood
pressure reading. echofit logs it all — no app to open, no forms to fill out.
</p>
<div class="example">
<div class="user">"I had a turkey sandwich and coffee for lunch"</div>
<div class="agent">Logged: turkey sandwich (380 cal), coffee black (5 cal). Daily total: 1,240 cal.</div>
<br>
<div class="user">"Ran 3 miles this morning, then 20 minutes of stretching"</div>
<div class="agent">Logged: running 3 mi, stretching 20 min. Weekly cardio: 4 sessions.</div>
</div>
<div class="section">
<h2>What you can track</h2>
<div class="cards">
<div class="card">
<h3>Meals & nutrition</h3>
<p>Log what you eat in natural language. Smart food catalog learns your favorites and portions.</p>
</div>
<div class="card">
<h3>Exercise</h3>
<p>Runs, lifts, yoga, walks — describe your workout however you want.</p>
</div>
<div class="card">
<h3>Blood pressure</h3>
<p>Track systolic, diastolic, and pulse readings over time.</p>
</div>
<div class="card">
<h3>Water intake</h3>
<p>Stay on top of hydration with quick, conversational logging.</p>
</div>
</div>
</div>
<div class="works-with">
<h2>Works with your AI assistant</h2>
<div class="platform-group">
<div class="platform-group-label">Available now</div>
<div class="platforms">
<span class="platform">Claude (claude.ai)</span>
<span class="platform">Claude Desktop</span>
<span class="platform">Claude Mobile</span>
<span class="platform">Claude Code</span>
<span class="platform">Gemini CLI</span>
</div>
</div>
<div class="platform-group">
<div class="platform-group-label">Coming soon</div>
<div class="platforms">
<span class="platform coming">ChatGPT App</span>
<span class="platform coming">Google Gemini App</span>
</div>
</div>
</div>
<div class="links">
<a href="https://github.com/echofit/echofit" class="btn-primary">Get started</a>
</div>
</div>
<footer>Part of the <a href="https://echosphere.dev">echosphere</a></footer>
</body>
</html>