-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmockup5.html
More file actions
379 lines (357 loc) · 11.7 KB
/
mockup5.html
File metadata and controls
379 lines (357 loc) · 11.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=390, initial-scale=1.0">
<title>Peepo — Mockup 5: Bento Grid</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 390px;
min-height: 844px;
background: #0f0f0f;
font-family: 'Inter', sans-serif;
color: #fff;
overflow-x: hidden;
}
.status-bar {
display: flex; justify-content: space-between; align-items: center;
padding: 14px 20px 0;
font-size: 12px; font-weight: 600;
}
.nav {
display: flex; justify-content: space-between; align-items: center;
padding: 16px 20px 20px;
}
.nav-logo {
font-family: 'Syne', sans-serif;
font-size: 28px; font-weight: 800;
letter-spacing: -1px;
}
.nav-logo .dot { color: #7c3aed; }
.nav-actions { display: flex; gap: 10px; }
.nav-btn {
width: 38px; height: 38px; border-radius: 12px;
background: #1a1a1a;
display: flex; align-items: center; justify-content: center;
font-size: 16px;
}
/* Bento grid */
.bento {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
gap: 10px;
padding: 0 16px;
margin-bottom: 16px;
}
.bento-card {
border-radius: 20px;
overflow: hidden;
position: relative;
}
/* Card 1 - Points (full width) */
.card-points {
grid-column: 1 / -1;
background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #0ea5e9 100%);
padding: 22px;
border-radius: 20px;
display: flex; align-items: center; justify-content: space-between;
position: relative; overflow: hidden;
}
.card-points::before {
content: '';
position: absolute; top: -40px; right: -40px;
width: 160px; height: 160px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
}
.points-left {}
.points-eyebrow { font-size: 10px; font-weight: 600; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.points-num {
font-family: 'Syne', sans-serif;
font-size: 44px; font-weight: 800; line-height: 1;
margin-bottom: 4px;
}
.points-sub { font-size: 12px; opacity: 0.7; }
.points-frog { font-size: 64px; opacity: 0.9; }
/* Card 2 - Tier */
.card-tier {
background: #1a1a1a;
padding: 18px;
border-radius: 20px;
}
.tier-icon { font-size: 32px; margin-bottom: 10px; }
.tier-label { font-size: 10px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.tier-name {
font-family: 'Syne', sans-serif;
font-size: 18px; font-weight: 800;
color: #fbbf24;
}
.tier-days { font-size: 11px; color: #555; margin-top: 4px; }
/* Card 3 - Streak */
.card-streak {
background: #ff3366;
padding: 18px;
border-radius: 20px;
}
.streak-num {
font-family: 'Syne', sans-serif;
font-size: 42px; font-weight: 800; line-height: 1;
margin-bottom: 2px;
}
.streak-label { font-size: 11px; font-weight: 600; opacity: 0.8; }
.streak-fire { font-size: 28px; margin-top: 8px; }
/* Card 4 - Platforms (full width) */
.card-platforms {
grid-column: 1 / -1;
background: #1a1a1a;
padding: 18px;
border-radius: 20px;
}
.platform-header {
font-family: 'Syne', sans-serif;
font-size: 14px; font-weight: 700; margin-bottom: 14px;
}
.platform-list { display: flex; gap: 10px; }
.plat {
flex: 1; background: #0f0f0f;
border-radius: 14px; padding: 12px 8px;
text-align: center;
}
.plat.connected { background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); }
.plat-icon { font-size: 24px; margin-bottom: 4px; }
.plat-name { font-size: 10px; font-weight: 600; color: #888; }
.plat-status { font-size: 9px; font-weight: 700; margin-top: 2px; }
.plat-status.on { color: #4ade80; }
.plat-status.off { color: #555; }
/* Card 5 - Gift drop */
.card-gift {
grid-column: 1 / -1;
background: linear-gradient(135deg, #f59e0b, #ef4444);
padding: 18px;
border-radius: 20px;
display: flex; align-items: center; gap: 14px;
}
.gift-icon { font-size: 44px; flex-shrink: 0; }
.gift-info { flex: 1; }
.gift-title {
font-family: 'Syne', sans-serif;
font-size: 18px; font-weight: 800; margin-bottom: 2px;
}
.gift-sub { font-size: 11px; opacity: 0.8; margin-bottom: 10px; }
.gift-btn {
display: inline-block;
background: rgba(0,0,0,0.25);
border-radius: 10px; padding: 8px 16px;
font-size: 12px; font-weight: 700;
}
/* Card 6 - Badges count */
.card-badges {
background: #0ea5e9;
padding: 18px;
border-radius: 20px;
}
.badges-num {
font-family: 'Syne', sans-serif;
font-size: 42px; font-weight: 800; line-height: 1;
margin-bottom: 2px;
}
.badges-label { font-size: 11px; font-weight: 600; opacity: 0.8; }
.badges-icon { font-size: 28px; margin-top: 8px; }
/* Card 7 - Merch */
.card-merch {
background: #1a1a1a;
padding: 18px;
border-radius: 20px;
}
.merch-icon { font-size: 32px; margin-bottom: 8px; }
.merch-count {
font-family: 'Syne', sans-serif;
font-size: 18px; font-weight: 800; margin-bottom: 2px;
}
.merch-label { font-size: 10px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.merch-new {
display: inline-block; margin-top: 8px;
background: #7c3aed; border-radius: 6px;
padding: 3px 8px; font-size: 9px; font-weight: 700;
}
/* Milestones section */
.milestones-section { padding: 0 16px; margin-bottom: 16px; }
.ms-header {
font-family: 'Syne', sans-serif;
font-size: 18px; font-weight: 800; margin-bottom: 14px;
}
.ms-card {
background: #1a1a1a;
border-radius: 18px;
padding: 16px;
margin-bottom: 10px;
display: flex; align-items: center; gap: 14px;
}
.ms-icon {
width: 48px; height: 48px; border-radius: 14px;
display: flex; align-items: center; justify-content: center;
font-size: 24px; flex-shrink: 0;
}
.ms-icon.purple { background: rgba(124,58,237,0.2); }
.ms-icon.orange { background: rgba(249,115,22,0.2); }
.ms-icon.gray { background: rgba(255,255,255,0.05); }
.ms-info { flex: 1; }
.ms-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.ms-desc { font-size: 11px; color: #555; margin-bottom: 8px; }
.ms-bar { height: 4px; background: #0f0f0f; border-radius: 2px; overflow: hidden; }
.ms-fill { height: 100%; border-radius: 2px; }
.ms-fill.purple { background: #7c3aed; }
.ms-fill.orange { background: #f97316; }
.ms-fill.gray { background: #333; }
.ms-pct { font-size: 13px; font-weight: 700; flex-shrink: 0; }
.ms-pct.purple { color: #7c3aed; }
.ms-pct.orange { color: #f97316; }
.ms-pct.gray { color: #444; }
/* Bottom nav */
.bottom-nav {
position: fixed; bottom: 0; left: 0; width: 390px;
background: #0f0f0f;
border-top: 1px solid #1a1a1a;
display: flex; justify-content: space-around; align-items: center;
padding: 12px 0 28px;
}
.nav-item {
display: flex; flex-direction: column; align-items: center; gap: 4px;
font-size: 9px; font-weight: 600; color: #333;
text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-item.active { color: #7c3aed; }
.nav-icon { font-size: 22px; }
.nav-center {
width: 52px; height: 52px; border-radius: 16px;
background: #7c3aed;
display: flex; align-items: center; justify-content: center;
font-size: 24px; margin-top: -22px;
box-shadow: 0 4px 20px rgba(124,58,237,0.5);
}
</style>
</head>
<body>
<div class="status-bar">
<span>9:41</span>
<span>●●●●● 🔋</span>
</div>
<div class="nav">
<div class="nav-logo">peepo<span class="dot">.</span></div>
<div class="nav-actions">
<div class="nav-btn">🔔</div>
<div class="nav-btn">⚙️</div>
</div>
</div>
<!-- Bento grid -->
<div class="bento">
<!-- Points card -->
<div class="card-points">
<div class="points-left">
<div class="points-eyebrow">Total Points</div>
<div class="points-num">4,280</div>
<div class="points-sub">Gold Tier · 847 days</div>
</div>
<div class="points-frog">🐸</div>
</div>
<!-- Tier -->
<div class="card-tier bento-card">
<div class="tier-icon">👑</div>
<div class="tier-label">Current Tier</div>
<div class="tier-name">GOLD</div>
<div class="tier-days">847 days</div>
</div>
<!-- Streak -->
<div class="card-streak bento-card">
<div class="streak-num">6</div>
<div class="streak-label">Month Streak</div>
<div class="streak-fire">🔥</div>
</div>
<!-- Platforms -->
<div class="card-platforms bento-card">
<div class="platform-header">Connected Platforms</div>
<div class="platform-list">
<div class="plat connected">
<div class="plat-icon">💜</div>
<div class="plat-name">Twitch</div>
<div class="plat-status on">Active</div>
</div>
<div class="plat connected">
<div class="plat-icon">🟢</div>
<div class="plat-name">Kick</div>
<div class="plat-status on">Active</div>
</div>
<div class="plat">
<div class="plat-icon">🔴</div>
<div class="plat-name">YouTube</div>
<div class="plat-status off">+ Add</div>
</div>
</div>
</div>
<!-- Gift drop -->
<div class="card-gift bento-card">
<div class="gift-icon">🎁</div>
<div class="gift-info">
<div class="gift-title">Gift Drop!</div>
<div class="gift-sub">xQcOW is gifting pins to chat right now</div>
<div class="gift-btn">Claim Now →</div>
</div>
</div>
<!-- Badges -->
<div class="card-badges bento-card">
<div class="badges-num">12</div>
<div class="badges-label">Badges Earned</div>
<div class="badges-icon">🏅</div>
</div>
<!-- Merch -->
<div class="card-merch bento-card">
<div class="merch-icon">🛍️</div>
<div class="merch-count">3 Items</div>
<div class="merch-label">Merch Owned</div>
<div class="merch-new">2 New Drops</div>
</div>
</div>
<!-- Milestones -->
<div class="milestones-section">
<div class="ms-header">Milestones</div>
<div class="ms-card">
<div class="ms-icon purple">📌</div>
<div class="ms-info">
<div class="ms-name">Gold Frog Pin</div>
<div class="ms-desc">6-month sub milestone</div>
<div class="ms-bar"><div class="ms-fill purple" style="width:60%"></div></div>
</div>
<div class="ms-pct purple">60%</div>
</div>
<div class="ms-card">
<div class="ms-icon orange">👕</div>
<div class="ms-info">
<div class="ms-name">OG Crew Tee</div>
<div class="ms-desc">1-year sub milestone</div>
<div class="ms-bar"><div class="ms-fill orange" style="width:84%"></div></div>
</div>
<div class="ms-pct orange">84%</div>
</div>
<div class="ms-card">
<div class="ms-icon gray">💎</div>
<div class="ms-info">
<div class="ms-name">Diamond Badge Pack</div>
<div class="ms-desc">2-year sub · Locked</div>
<div class="ms-bar"><div class="ms-fill gray" style="width:42%"></div></div>
</div>
<div class="ms-pct gray">42%</div>
</div>
</div>
<div style="height: 100px;"></div>
<div class="bottom-nav">
<div class="nav-item active"><div class="nav-icon">⊞</div>Home</div>
<div class="nav-item"><div class="nav-icon">🏆</div>Rewards</div>
<div class="nav-center">🐸</div>
<div class="nav-item"><div class="nav-icon">🛍️</div>Shop</div>
<div class="nav-item"><div class="nav-icon">👤</div>Profile</div>
</div>
</body>
</html>