-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
339 lines (326 loc) · 9.96 KB
/
index.html
File metadata and controls
339 lines (326 loc) · 9.96 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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>echosphere — The Echo Brand Family</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: 860px;
margin: 0 auto;
}
.header {
text-align: center;
margin-bottom: 3rem;
}
.sphere-icon {
width: 80px;
height: 80px;
border-radius: 16px;
margin: 2rem auto 1rem;
}
h1 {
font-size: 2.4rem;
font-weight: 700;
margin-bottom: 0.4rem;
background: linear-gradient(135deg, #58A6FF, #A371F7, #F778BA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.tagline {
font-size: 1.05rem;
color: #8B949E;
margin-bottom: 1.5rem;
}
.intro {
font-size: 0.95rem;
color: #C9D1D9;
line-height: 1.7;
max-width: 600px;
margin: 0 auto;
}
/* Brand cards — top-level */
.brands {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
margin-top: 2.5rem;
}
.brand-card {
background: #0D1117;
border: 1px solid #30363D;
border-radius: 12px;
padding: 1.8rem 1.4rem;
text-decoration: none;
transition: border-color 0.2s, transform 0.2s;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.brand-card:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
.brand-card .brand-icon {
width: 56px;
height: 56px;
border-radius: 12px;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
}
.brand-card .brand-logo {
width: 56px;
height: 56px;
border-radius: 12px;
margin-bottom: 1rem;
}
.brand-card h2 {
font-size: 1.2rem;
font-weight: 700;
color: #E6EDF3;
margin-bottom: 0.3rem;
}
.brand-card .domain {
font-size: 0.75rem;
color: var(--accent);
margin-bottom: 0.6rem;
font-weight: 500;
}
.brand-card p {
font-size: 0.82rem;
color: #8B949E;
line-height: 1.5;
}
/* Accent colors per brand */
.brand-model { --accent: #58A6FF; }
.brand-skill { --accent: #3FB9CF; }
.brand-fit { --accent: #DA70D6; }
.brand-model .brand-icon { background: #112240; }
.brand-skill .brand-icon { background: #0D2D33; }
.brand-fit .brand-icon { background: #2D1230; }
/* Sub-brands section */
.section-label {
font-size: 0.85rem;
font-weight: 600;
color: #484F58;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-top: 3.5rem;
margin-bottom: 0.3rem;
text-align: center;
}
.section-title {
font-size: 1.3rem;
font-weight: 700;
color: #E6EDF3;
text-align: center;
margin-bottom: 0.4rem;
}
.section-desc {
font-size: 0.88rem;
color: #8B949E;
text-align: center;
margin-bottom: 1.5rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.sub-brands {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.8rem;
}
.sub-card {
background: #0D1117;
border: 1px solid #30363D;
border-radius: 8px;
padding: 1.2rem;
text-decoration: none;
transition: border-color 0.2s;
}
.sub-card:hover { border-color: #DA70D6; }
.sub-card .sub-icon {
font-size: 1.4rem;
margin-bottom: 0.6rem;
}
.sub-card h3 {
font-size: 0.9rem;
color: #E6EDF3;
margin-bottom: 0.2rem;
}
.sub-card .sub-label {
font-size: 0.7rem;
color: #DA70D6;
margin-bottom: 0.4rem;
font-weight: 500;
}
.sub-card p {
font-size: 0.78rem;
color: #8B949E;
line-height: 1.4;
}
/* Ecosystem diagram */
.ecosystem {
margin-top: 3.5rem;
text-align: center;
}
.eco-row {
display: flex;
justify-content: center;
gap: 0.6rem;
margin-bottom: 0.4rem;
flex-wrap: wrap;
}
.eco-pill {
font-size: 0.72rem;
padding: 0.25rem 0.7rem;
border-radius: 20px;
font-weight: 500;
text-decoration: none;
}
.eco-pill-model { background: #112240; color: #58A6FF; border: 1px solid #1F3A5F; }
.eco-pill-skill { background: #0D2D33; color: #3FB9CF; border: 1px solid #1A4850; }
.eco-pill-fit { background: #2D1230; color: #DA70D6; border: 1px solid #4A1D50; }
.eco-pill:hover { opacity: 0.8; }
.eco-connector {
color: #30363D;
font-size: 0.7rem;
margin: 0.2rem 0;
}
footer {
text-align: center;
color: #484F58;
font-size: 0.8rem;
margin-top: 3.5rem;
padding-bottom: 2rem;
}
footer a {
color: #58A6FF;
text-decoration: none;
}
footer a:hover { text-decoration: underline; }
.domain-suffix {
font-size: 2.4rem;
font-weight: 400;
color: rgba(163,113,247,0.45);
}
@media (max-width: 600px) {
.brands { grid-template-columns: 1fr; }
.sub-brands { grid-template-columns: 1fr; }
h1 { font-size: 1.8rem; }
.domain-suffix { font-size: 1.8rem; }
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="brand/echosphere-logo-512-dark.png" alt="echosphere logo" class="sphere-icon">
<div style="display:flex;align-items:baseline;justify-content:center;"><h1 style="margin-bottom:0;">echosphere</h1><span class="domain-suffix">.dev</span></div>
<p class="tagline">The echo brand family</p>
<p class="intro">
An ecosystem of AI-powered products and open-source frameworks.
Each echo brand serves a distinct purpose — from developer infrastructure
to consumer solutions — connected by shared technology and design language.
</p>
</div>
<!-- Top-level brands -->
<div class="brands">
<a href="https://echomodel.ai" class="brand-card brand-model">
<img src="https://echomodel.ai/brand/echomodel-logo-512.png" alt="echomodel logo" class="brand-logo">
<h2>echomodel</h2>
<span class="domain">echomodel.ai</span>
<p>AI agent ecosystem. Frameworks, tools, and the developer platform that powers everything.</p>
</a>
<a href="https://echoskill.ai" class="brand-card brand-skill">
<img src="https://echoskill.ai/brand/echo-skill-logo-512.png" alt="echoskill logo" class="brand-logo">
<h2>echoskill</h2>
<span class="domain">echoskill.ai</span>
<p>AI agent skills marketplace. Reusable capabilities for any AI agent.</p>
</a>
<a href="https://echofit.ai" class="brand-card brand-fit">
<img src="https://echofit.ai/brand/echofit-logo-512.png" alt="echofit logo" class="brand-logo">
<h2>echofit</h2>
<span class="domain">echofit.ai</span>
<p>AI-powered fitness, nutrition, and health tracking through conversational agents.</p>
</a>
</div>
<!-- EchoFit sub-brands -->
<div class="section-label">echofit.ai</div>
<div class="section-title">Health & Wellness Suite</div>
<p class="section-desc">
Specialized modules within echofit, each focused on a different
dimension of personal health.
</p>
<div class="sub-brands">
<div class="sub-card">
<div class="sub-icon">🥗</div>
<h3>EchoFit Diet</h3>
<div class="sub-label">echofit.ai/diet</div>
<p>Meal logging, calorie tracking, macro breakdowns, and personalized nutrition insights powered by AI.</p>
</div>
<div class="sub-card">
<div class="sub-icon">💪</div>
<h3>EchoFit Workout</h3>
<div class="sub-label">echofit.ai/workout</div>
<p>Exercise logging, workout plans, progress tracking, and rep/set analysis through natural conversation.</p>
</div>
<div class="sub-card">
<div class="sub-icon">❤️🩹</div>
<h3>EchoFit Health</h3>
<div class="sub-label">echofit.ai/health</div>
<p>Blood pressure, vitals, water intake, sleep, and holistic health metrics — all logged via your AI agent.</p>
</div>
</div>
<!-- Ecosystem map -->
<div class="ecosystem">
<div class="section-label" style="margin-top: 3.5rem;">ecosystem</div>
<div class="section-title">How It Connects</div>
<p class="section-desc">
echomodel provides the foundation. echoskill extends agent capabilities.
echofit delivers the consumer experience.
</p>
<div class="eco-row">
<span class="eco-pill eco-pill-model">mcp-app</span>
<span class="eco-pill eco-pill-model">gapp</span>
<span class="eco-pill eco-pill-model">echomodel CLI</span>
</div>
<div class="eco-connector">▼</div>
<div class="eco-row">
<span class="eco-pill eco-pill-skill">skills marketplace</span>
<span class="eco-pill eco-pill-skill">sdk</span>
<span class="eco-pill eco-pill-skill">plugins</span>
</div>
<div class="eco-connector">▼</div>
<div class="eco-row">
<span class="eco-pill eco-pill-fit">EchoFit Diet</span>
<span class="eco-pill eco-pill-fit">EchoFit Workout</span>
<span class="eco-pill eco-pill-fit">EchoFit Health</span>
</div>
</div>
<footer>
<a href="https://github.com/echomodel">GitHub</a>
·
<a href="https://echomodel.ai">echomodel.ai</a>
·
<a href="https://echoskill.ai">echoskill.ai</a>
·
<a href="https://echofit.ai">echofit.ai</a>
·
echosphere.dev
</footer>
</div>
</body>
</html>