-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcover-image.html
More file actions
536 lines (498 loc) · 15.4 KB
/
Copy pathcover-image.html
File metadata and controls
536 lines (498 loc) · 15.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>PrepStudio Cover</title>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet"/>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1280px;
height: 360px;
overflow: hidden;
background: #050810;
font-family: 'Outfit', sans-serif;
-webkit-font-smoothing: antialiased;
}
.cover {
width: 1280px;
height: 360px;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 80px;
overflow: hidden;
}
/* ── Background layers ── */
.bg-orb-1 {
position: absolute;
width: 700px; height: 700px;
border-radius: 50%;
background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
top: -200px; left: -100px;
pointer-events: none;
}
.bg-orb-2 {
position: absolute;
width: 600px; height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(124,58,237,0.14) 0%, transparent 70%);
bottom: -200px; right: 200px;
pointer-events: none;
}
.bg-orb-3 {
position: absolute;
width: 400px; height: 360px;
border-radius: 50%;
background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
top: 50%; right: -80px;
transform: translateY(-50%);
pointer-events: none;
}
/* Subtle grid */
.bg-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
background-size: 48px 48px;
pointer-events: none;
}
/* Noise grain */
.bg-grain {
position: absolute;
inset: 0;
opacity: 0.025;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
background-size: 128px;
pointer-events: none;
}
/* ── Left column ── */
.left {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
gap: 0;
max-width: 600px;
}
.brand-row {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 12px;
}
.brand-name {
font-size: 22px;
font-weight: 900;
color: rgba(255,255,255,0.9);
letter-spacing: -0.02em;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(99,102,241,0.12);
border: 1px solid rgba(99,102,241,0.25);
padding: 6px 14px;
border-radius: 999px;
margin-bottom: 10px;
width: fit-content;
}
.eyebrow-dot {
width: 6px; height: 6px;
border-radius: 50%;
background: #818cf8;
}
.eyebrow-text {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #a5b4fc;
}
.headline {
font-size: 50px;
font-weight: 900;
letter-spacing: -0.04em;
line-height: 0.9;
color: #f8fafc;
margin-bottom: 12px;
}
.headline .line2 {
background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
font-size: 14px;
font-weight: 400;
color: rgba(255,255,255,0.38);
line-height: 1.6;
max-width: 460px;
margin-bottom: 12px;
}
.feature-pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.pill {
display: flex;
align-items: center;
gap: 6px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
padding: 7px 14px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
color: rgba(255,255,255,0.5);
letter-spacing: 0.01em;
}
.pill-dot {
width: 5px; height: 5px;
border-radius: 50%;
}
/* ── Right column — UI card ── */
.right {
position: relative;
z-index: 10;
flex-shrink: 0;
}
.ui-card {
width: 360px;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.09);
border-radius: 24px;
padding: 18px;
backdrop-filter: blur(20px);
box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
position: relative;
}
.card-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}
.card-label {
font-size: 10px;
font-weight: 600;
color: rgba(255,255,255,0.25);
text-transform: uppercase;
letter-spacing: 0.12em;
}
.card-title {
font-size: 14px;
font-weight: 800;
color: white;
margin-top: 2px;
}
.badge {
background: rgba(124,58,237,0.18);
border: 1px solid rgba(124,58,237,0.3);
color: #c4b5fd;
font-size: 10px;
font-weight: 700;
padding: 4px 10px;
border-radius: 999px;
}
.topic-list {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 18px;
}
.topic-row {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 14px;
border-radius: 12px;
}
.topic-row.done { background: rgba(255,255,255,0.04); }
.topic-row.active { background: rgba(124,58,237,0.14); border: 1px solid rgba(124,58,237,0.25); }
.topic-row.upcoming { background: rgba(255,255,255,0.02); }
.topic-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.topic-name { font-size: 13px; flex: 1; }
.topic-name.done { color: rgba(255,255,255,0.5); font-weight: 500; }
.topic-name.active { color: white; font-weight: 700; }
.topic-name.upcoming { color: rgba(255,255,255,0.2); font-weight: 400; }
.topic-tag { font-size: 10px; font-weight: 700; }
.topic-tag.done { color: #34d399; }
.topic-tag.active { color: #a78bfa; }
.progress-block {
background: rgba(255,255,255,0.04);
border-radius: 12px;
padding: 12px 14px;
}
.progress-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.progress-label { font-size: 10px; color: rgba(255,255,255,0.28); font-weight: 500; }
.progress-pct { font-size: 11px; font-weight: 900; color: #a78bfa; }
.progress-track {
height: 5px;
background: rgba(255,255,255,0.07);
border-radius: 999px;
overflow: hidden;
}
.progress-fill {
height: 100%;
width: 64%;
border-radius: 999px;
background: linear-gradient(90deg, #6366f1, #7c3aed);
box-shadow: 0 0 8px rgba(99,102,241,0.5);
}
/* Floating badges on card */
.card-badge-top {
position: absolute;
top: -14px; right: -14px;
background: linear-gradient(135deg, #4f46e5, #7c3aed);
color: white;
font-size: 10px;
font-weight: 900;
padding: 7px 13px;
border-radius: 12px;
letter-spacing: 0.04em;
box-shadow: 0 8px 24px rgba(99,102,241,0.4);
border: 1px solid rgba(99,162,241,0.2);
}
.card-badge-bot {
position: absolute;
bottom: -14px; left: -14px;
background: rgba(0,0,0,0.8);
border: 1px solid rgba(255,255,255,0.09);
color: rgba(255,255,255,0.55);
font-size: 10px;
font-weight: 600;
padding: 7px 13px;
border-radius: 12px;
backdrop-filter: blur(12px);
letter-spacing: 0.02em;
}
/* ── Voice panel below card ── */
.voice-card {
width: 360px;
margin-top: 12px;
background: rgba(124,58,237,0.08);
border: 1px solid rgba(124,58,237,0.18);
border-radius: 16px;
padding: 14px 18px;
display: flex;
align-items: center;
gap: 14px;
}
.voice-icon {
width: 36px; height: 36px;
border-radius: 10px;
background: rgba(124,58,237,0.2);
border: 1px solid rgba(124,58,237,0.3);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.voice-bars {
display: flex;
align-items: center;
gap: 3px;
height: 20px;
margin-left: auto;
}
.vbar {
width: 3px;
border-radius: 999px;
background: rgba(124,58,237,0.6);
}
.voice-text { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); }
.voice-sub { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 1px; font-weight: 400; }
/* ── Powered-by strip (inline in left column) ── */
.powered-by {
display: flex;
align-items: center;
gap: 12px;
margin-top: 10px;
}
.powered-label {
font-size: 10px;
font-weight: 600;
color: rgba(255,255,255,0.18);
letter-spacing: 0.12em;
text-transform: uppercase;
}
.powered-divider {
width: 1px;
height: 14px;
background: rgba(255,255,255,0.1);
}
.tech-badge {
display: flex;
align-items: center;
gap: 6px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.07);
padding: 5px 11px;
border-radius: 8px;
font-size: 11px;
font-weight: 700;
color: rgba(255,255,255,0.45);
letter-spacing: 0.02em;
}
</style>
</head>
<body>
<div class="cover">
<!-- Background -->
<div class="bg-orb-1"></div>
<div class="bg-orb-2"></div>
<div class="bg-orb-3"></div>
<div class="bg-grid"></div>
<div class="bg-grain"></div>
<!-- ── LEFT ── -->
<div class="left">
<!-- Brand row -->
<div class="brand-row">
<!-- Logo SVG -->
<svg width="42" height="42" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg" style="filter:drop-shadow(0 4px 16px rgba(99,102,241,0.5))">
<defs>
<linearGradient id="covGrad" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#4f46e5"/>
<stop offset="100%" stop-color="#7c3aed"/>
</linearGradient>
</defs>
<rect width="100" height="100" rx="22" fill="url(#covGrad)"/>
<rect x="0.5" y="0.5" width="99" height="99" rx="21.5" fill="none" stroke="rgba(255,255,255,0.14)" stroke-width="1"/>
<path fill-rule="evenodd" fill="white"
d="M14 14 L14 86 L26 86 L26 50 Q66 50 66 32 Q66 14 26 14Z M26 22 Q58 22 58 32 Q58 42 26 42Z"/>
<rect x="72" y="26" width="6" height="12" rx="3" fill="white" fill-opacity="0.45"/>
<rect x="80" y="22" width="6" height="20" rx="3" fill="white" fill-opacity="0.70"/>
<rect x="88" y="18" width="6" height="28" rx="3" fill="white" fill-opacity="1"/>
</svg>
<span class="brand-name">PrepStudio</span>
</div>
<!-- Eyebrow -->
<div class="eyebrow">
<div class="eyebrow-dot"></div>
<span class="eyebrow-text">AI Study & Voice Interview Platform</span>
</div>
<!-- Headline -->
<div class="headline">
Study smarter.<br/>
<span class="line2">Speak sharper.</span>
</div>
<!-- Subtitle -->
<p class="subtitle">
AI study plans, interactive voice lessons, and mock voice interviews — all in one platform. Powered by ElevenLabs Conversational AI and Gemini 2.5 Flash.
</p>
<!-- Feature pills -->
<div class="feature-pills">
<div class="pill"><div class="pill-dot" style="background:#6366f1"></div>AI Study Plans</div>
<div class="pill"><div class="pill-dot" style="background:#7c3aed"></div>Audio Lessons</div>
<div class="pill"><div class="pill-dot" style="background:#8b5cf6"></div>Voice Interviews</div>
<div class="pill"><div class="pill-dot" style="background:#34d399"></div>Performance Reports</div>
</div>
<!-- Powered-by -->
<div class="powered-by">
<span class="powered-label">Powered by</span>
<div class="powered-divider"></div>
<div class="tech-badge">
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="2" width="6" height="12" rx="3"/>
<path d="M5 10a7 7 0 0014 0"/>
<line x1="12" y1="19" x2="12" y2="22"/>
</svg>
ElevenLabs
</div>
<div class="tech-badge">
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/>
</svg>
Gemini 2.5 Flash
</div>
<div class="tech-badge">
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/>
</svg>
Next.js + FastAPI
</div>
</div>
</div>
<!-- ── RIGHT ── -->
<div class="right">
<!-- Main UI card -->
<div class="ui-card">
<div class="card-header">
<div>
<div class="card-label">System Design</div>
<div class="card-title">Day 3 of 14</div>
</div>
<div class="badge">In Progress</div>
</div>
<div class="topic-list">
<div class="topic-row done">
<div class="topic-dot" style="background:#34d399"></div>
<span class="topic-name done">CAP Theorem</span>
<span class="topic-tag done">Done</span>
</div>
<div class="topic-row active">
<div class="topic-dot" style="background:#a78bfa"></div>
<span class="topic-name active">Consistent Hashing</span>
<span class="topic-tag active">Now</span>
</div>
<div class="topic-row upcoming">
<div class="topic-dot" style="background:rgba(255,255,255,0.15)"></div>
<span class="topic-name upcoming">Load Balancing</span>
</div>
</div>
<div class="progress-block">
<div class="progress-top">
<span class="progress-label">Interview Readiness</span>
<span class="progress-pct">64%</span>
</div>
<div class="progress-track">
<div class="progress-fill"></div>
</div>
</div>
<!-- Floating badges -->
<div class="card-badge-top">Gemini 2.5 Flash</div>
<div class="card-badge-bot">ElevenLabs Voice AI</div>
</div>
<!-- Voice session card -->
<div class="voice-card">
<div class="voice-icon">
<!-- Mic SVG -->
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="#a78bfa" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="2" width="6" height="12" rx="3"/>
<path d="M5 10a7 7 0 0014 0"/>
<line x1="12" y1="19" x2="12" y2="22"/>
<line x1="8" y1="22" x2="16" y2="22"/>
</svg>
</div>
<div>
<div class="voice-text">Alex — AI Interviewer</div>
<div class="voice-sub">Voice interview in progress</div>
</div>
<!-- Animated bars (static for cover) -->
<div class="voice-bars">
<div class="vbar" style="height:8px"></div>
<div class="vbar" style="height:16px"></div>
<div class="vbar" style="height:20px;background:rgba(124,58,237,0.9)"></div>
<div class="vbar" style="height:14px"></div>
<div class="vbar" style="height:10px"></div>
<div class="vbar" style="height:18px;background:rgba(124,58,237,0.8)"></div>
<div class="vbar" style="height:12px"></div>
</div>
</div>
</div>
</div>
</body>
</html>