-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
606 lines (540 loc) · 16.3 KB
/
index.html
File metadata and controls
606 lines (540 loc) · 16.3 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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snoopy — Your AI Partner</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--cyan: #00f0ff;
--magenta: #ff00aa;
--dark: #0a0a0f;
--card: #12121a;
--text: #e0e0e8;
--muted: #6a6a7a;
}
body {
background: var(--dark);
color: var(--text);
font-family: 'Inter', sans-serif;
overflow-x: hidden;
line-height: 1.6;
}
/* Grid background */
body::before {
content: '';
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background-image:
linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
z-index: 0;
}
/* Glow orbs */
.orb {
position: fixed;
border-radius: 50%;
filter: blur(120px);
opacity: 0.15;
pointer-events: none;
z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: var(--cyan); top: -200px; right: -100px; }
.orb-2 { width: 500px; height: 500px; background: var(--magenta); bottom: -150px; left: -100px; }
.orb-3 { width: 400px; height: 400px; background: #7b2fff; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.container {
max-width: 900px;
margin: 0 auto;
padding: 0 40px;
position: relative;
z-index: 1;
}
/* Hero */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 60px 20px;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 20px;
border: 1px solid rgba(0,240,255,0.2);
border-radius: 100px;
font-size: 13px;
font-weight: 500;
color: var(--cyan);
letter-spacing: 0.5px;
margin-bottom: 40px;
background: rgba(0,240,255,0.05);
animation: fadeIn 0.8s ease-out;
}
.hero-badge .dot {
width: 8px; height: 8px;
background: var(--cyan);
border-radius: 50%;
animation: pulse 2s infinite;
}
.hero h1 {
font-size: clamp(48px, 8vw, 96px);
font-weight: 700;
letter-spacing: -2px;
line-height: 1;
margin-bottom: 24px;
animation: fadeIn 1s ease-out 0.2s both;
}
.hero h1 .gradient {
background: linear-gradient(135deg, var(--cyan), var(--magenta));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero .subtitle {
font-size: clamp(18px, 2.5vw, 24px);
color: var(--muted);
font-weight: 300;
max-width: 600px;
margin-bottom: 50px;
animation: fadeIn 1s ease-out 0.4s both;
}
.hero .tagline {
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
color: var(--cyan);
opacity: 0.7;
animation: fadeIn 1s ease-out 0.6s both;
}
/* Scroll indicator */
.scroll-hint {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
animation: fadeIn 1s ease-out 1s both;
}
.scroll-hint span {
font-size: 11px;
color: var(--muted);
letter-spacing: 2px;
text-transform: uppercase;
}
.scroll-line {
width: 1px;
height: 40px;
background: linear-gradient(to bottom, var(--cyan), transparent);
animation: scrollPulse 2s infinite;
}
/* Section */
section {
padding: 100px 0;
}
.section-label {
font-family: 'JetBrains Mono', monospace;
font-size: 12px;
color: var(--cyan);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 16px;
}
.section-title {
font-size: clamp(28px, 4vw, 42px);
font-weight: 600;
letter-spacing: -1px;
margin-bottom: 20px;
}
.section-text {
font-size: 17px;
color: var(--muted);
max-width: 650px;
line-height: 1.8;
}
/* What is Snoopy */
.intro-section .section-text {
margin-bottom: 50px;
}
/* Capabilities grid */
.capabilities {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin-top: 50px;
}
.cap-card {
background: var(--card);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 16px;
padding: 30px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.cap-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--cyan), var(--magenta));
opacity: 0;
transition: opacity 0.3s;
}
.cap-card:hover {
border-color: rgba(0,240,255,0.15);
transform: translateY(-4px);
}
.cap-card:hover::before { opacity: 1; }
.cap-icon {
font-size: 28px;
margin-bottom: 16px;
display: block;
}
.cap-card h3 {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
}
.cap-card p {
font-size: 14px;
color: var(--muted);
line-height: 1.6;
}
/* The voice section */
.voice-section {
text-align: center;
padding: 120px 0;
}
.siri-demo {
margin: 60px auto;
max-width: 500px;
background: var(--card);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 24px;
padding: 50px 40px;
position: relative;
overflow: hidden;
}
.siri-demo::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
background-size: 200% 100%;
animation: shimmer 3s infinite linear;
}
.siri-waveform {
display: flex;
justify-content: center;
align-items: center;
gap: 4px;
margin-bottom: 30px;
height: 50px;
}
.siri-waveform .bar {
width: 4px;
border-radius: 4px;
background: linear-gradient(to top, var(--cyan), var(--magenta));
animation: wave 1.2s ease-in-out infinite;
}
.siri-waveform .bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.siri-waveform .bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.siri-waveform .bar:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.siri-waveform .bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.siri-waveform .bar:nth-child(5) { height: 25px; animation-delay: 0.4s; }
.siri-waveform .bar:nth-child(6) { height: 45px; animation-delay: 0.15s; }
.siri-waveform .bar:nth-child(7) { height: 30px; animation-delay: 0.25s; }
.siri-waveform .bar:nth-child(8) { height: 50px; animation-delay: 0.35s; }
.siri-waveform .bar:nth-child(9) { height: 35px; animation-delay: 0.1s; }
.siri-waveform .bar:nth-child(10) { height: 20px; animation-delay: 0.45s; }
.voice-command {
font-size: 22px;
font-weight: 500;
margin-bottom: 8px;
}
.voice-command .highlight {
color: var(--cyan);
}
.voice-response {
font-size: 15px;
color: var(--muted);
font-style: italic;
}
/* How it works */
.flow {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
margin: 50px 0;
flex-wrap: wrap;
}
.flow-step {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.flow-icon {
width: 64px; height: 64px;
background: var(--card);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
}
.flow-label {
font-size: 13px;
font-weight: 500;
color: var(--muted);
}
.flow-arrow {
font-size: 20px;
color: var(--cyan);
opacity: 0.5;
margin-top: -20px;
}
/* Memory section */
.memory-section {
padding: 100px 0;
}
.memory-visual {
margin-top: 50px;
background: var(--card);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 16px;
padding: 30px;
font-family: 'JetBrains Mono', monospace;
font-size: 13px;
line-height: 2;
overflow: hidden;
}
.memory-visual .comment { color: var(--muted); }
.memory-visual .key { color: var(--cyan); }
.memory-visual .value { color: var(--magenta); }
.memory-visual .bracket { color: #444; }
/* Footer */
.footer {
text-align: center;
padding: 80px 0 60px;
border-top: 1px solid rgba(255,255,255,0.04);
}
.footer p {
color: var(--muted);
font-size: 14px;
margin-bottom: 8px;
}
.footer .tech {
font-family: 'JetBrains Mono', monospace;
font-size: 12px;
color: rgba(255,255,255,0.2);
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
@keyframes scrollPulse {
0%, 100% { opacity: 0.3; }
50% { opacity: 1; }
}
@keyframes wave {
0%, 100% { transform: scaleY(0.5); }
50% { transform: scaleY(1); }
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
/* Scroll reveal */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease-out;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<!-- Hero -->
<div class="hero">
<div class="hero-badge">
<span class="dot"></span>
Online
</div>
<h1>Meet <span class="gradient">Snoopy</span></h1>
<p class="subtitle">A personal AI that actually knows you. Not a chatbot. Not an assistant. A partner that runs your digital life.</p>
<p class="tagline">"Hey Siri, Snoopy" — and it begins.</p>
<div class="scroll-hint">
<span>Scroll</span>
<div class="scroll-line"></div>
</div>
</div>
<!-- What is Snoopy -->
<section class="intro-section">
<div class="container">
<div class="reveal">
<div class="section-label">// What is this</div>
<h2 class="section-title">An AI that remembers.</h2>
<p class="section-text">
Snoopy lives inside Telegram and connects to everything on your Mac — messages, calendar, music, browser, files. It doesn't start fresh every conversation. It knows your schedule, your contacts, your preferences, your open tasks. It picks up where you left off.
</p>
<p class="section-text">
Think of it as a second brain with agency. It doesn't just answer questions — it takes action. Reads your WhatsApp, drafts your emails, plays your music, checks your calendar. All through natural conversation.
</p>
</div>
<div class="capabilities reveal">
<div class="cap-card">
<span class="cap-icon">💬</span>
<h3>All Your Messages</h3>
<p>WhatsApp, iMessage, Slack, Email — reads and responds across every channel from one place.</p>
</div>
<div class="cap-card">
<span class="cap-icon">📅</span>
<h3>Calendar & Scheduling</h3>
<p>Creates events, checks conflicts, knows your timezone, reminds you what's coming.</p>
</div>
<div class="cap-card">
<span class="cap-icon">🎵</span>
<h3>Music & Spotify</h3>
<p>Plays music that matches your mood. Knows your taste. Not random playlists — personal ones.</p>
</div>
<div class="cap-card">
<span class="cap-icon">🧠</span>
<h3>Persistent Memory</h3>
<p>Remembers across sessions. Your preferences, habits, ongoing tasks, people, and context — nothing is lost.</p>
</div>
<div class="cap-card">
<span class="cap-icon">💻</span>
<h3>Mac Automation</h3>
<p>Controls your Mac natively. Opens apps, runs scripts, manages files, automates workflows.</p>
</div>
<div class="cap-card">
<span class="cap-icon">🌐</span>
<h3>Web & Research</h3>
<p>Searches the web, reads articles, saves findings. Your personal research analyst.</p>
</div>
</div>
</div>
</section>
<!-- Voice / Siri -->
<section class="voice-section">
<div class="container">
<div class="reveal">
<div class="section-label">// The breakthrough</div>
<h2 class="section-title">Siri, but actually smart.</h2>
<p class="section-text" style="margin: 0 auto 20px;">
One voice command. That's all it takes. Say "Hey Siri, Snoopy" and speak naturally. Your words travel from Siri to Telegram to Claude — and an AI with full context of your life responds. No app to open. No screen to look at. Just your voice.
</p>
</div>
<div class="siri-demo reveal">
<div class="siri-waveform">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<p class="voice-command">"Hey Siri, Snoopy — <span class="highlight">play something that touches my heart</span>"</p>
<p class="voice-response">Snoopy plays Sufi ney music. Because it knows it's Ramadan, and it knows you.</p>
</div>
<div class="flow reveal">
<div class="flow-step">
<div class="flow-icon">🎙</div>
<span class="flow-label">Your Voice</span>
</div>
<span class="flow-arrow">→</span>
<div class="flow-step">
<div class="flow-icon">📱</div>
<span class="flow-label">Siri</span>
</div>
<span class="flow-arrow">→</span>
<div class="flow-step">
<div class="flow-icon">✈</div>
<span class="flow-label">Telegram</span>
</div>
<span class="flow-arrow">→</span>
<div class="flow-step">
<div class="flow-icon">🤖</div>
<span class="flow-label">Snoopy</span>
</div>
<span class="flow-arrow">→</span>
<div class="flow-step">
<div class="flow-icon">✨</div>
<span class="flow-label">Action</span>
</div>
</div>
</div>
</section>
<!-- Memory -->
<section class="memory-section">
<div class="container">
<div class="reveal">
<div class="section-label">// Under the hood</div>
<h2 class="section-title">Context is everything.</h2>
<p class="section-text">
Most AI assistants forget you the moment the conversation ends. Snoopy doesn't. It maintains a living memory — updated after every interaction. That's why it can connect dots no generic assistant ever could.
</p>
</div>
<div class="memory-visual reveal">
<span class="comment">// snoopy's memory</span><br>
<span class="bracket">{</span><br>
<span class="key">"owner"</span>: <span class="value">"you"</span>,<br>
<span class="key">"location"</span>: <span class="value">"wherever you are right now"</span>,<br>
<span class="key">"music_taste"</span>: <span class="value">"learned over time, not a survey"</span>,<br>
<span class="key">"open_tasks"</span>: <span class="value">"tracked across sessions"</span>,<br>
<span class="key">"contacts"</span>: <span class="value">"knows who matters to you"</span>,<br>
<span class="key">"preferences"</span>: <span class="value">"remembered, not re-asked"</span>,<br>
<span class="key">"sessions"</span>: <span class="value">"persistent — picks up where you left off"</span><br>
<span class="bracket">}</span>
</div>
</div>
</section>
<!-- Footer -->
<div class="footer">
<div class="container">
<p>Built by <strong>Muz</strong> × <strong>Snoopy</strong></p>
<p class="tech">Powered by Claude Code • Telegram • Siri Shortcuts • A lot of late nights</p>
</div>
</div>
<script>
// Scroll reveal
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
</script>
</body>
</html>