-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
592 lines (524 loc) · 15.3 KB
/
index.html
File metadata and controls
592 lines (524 loc) · 15.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Attack The Yak</title>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="assets/yak-favicon.svg">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
:root {
--bg: #050815;
--accent-yellow: #ffd43b;
--accent-cyan: #4fd4ff;
--accent-pink: #ff4fa3;
--card-bg: rgba(9, 16, 36, 0.96);
--card-border: rgba(151, 179, 255, 0.25);
--muted: rgba(226, 232, 255, 0.76);
--pill-bg: rgba(10, 19, 45, 0.98);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
color: #ecf3ff;
background:
radial-gradient(circle at top left, #1e293b 0, transparent 55%),
radial-gradient(circle at bottom right, #020617 0, transparent 60%),
var(--bg);
}
a {
color: inherit;
}
.shell {
max-width: 1120px;
margin: 0 auto;
padding: 1.6rem 1.4rem 3.5rem;
}
/* Top brand / nav */
.top-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-bottom: 1.4rem;
}
.brand-lockup {
display: flex;
align-items: center;
gap: 0.75rem;
}
.brand-logo {
width: 40px;
height: 40px;
border-radius: 12px;
object-fit: cover;
box-shadow:
0 0 0 1px rgba(15, 23, 42, 0.9),
0 0 20px rgba(79, 212, 255, 0.6);
}
.brand-text-main {
font-weight: 700;
font-size: 0.95rem;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.brand-text-sub {
font-size: 0.75rem;
opacity: 0.7;
}
.top-links {
display: flex;
gap: 0.7rem;
font-size: 0.8rem;
opacity: 0.9;
}
.top-links a {
text-decoration: none;
padding: 0.32rem 0.75rem;
border-radius: 999px;
border: 1px solid rgba(148, 163, 255, 0.4);
background:
radial-gradient(circle at top, rgba(248, 250, 252, 0.18), transparent 60%),
rgba(15, 23, 42, 0.96);
backdrop-filter: blur(10px);
display: inline-flex;
align-items: center;
gap: 0.35rem;
}
.top-links a:hover {
border-color: rgba(248, 250, 252, 0.88);
}
/* Hero */
header.hero {
padding: 0.9rem 0 1.9rem;
position: relative;
}
.hero-glow {
position: absolute;
inset: -120px -80px auto;
pointer-events: none;
opacity: 0.5;
background:
radial-gradient(circle at top left, rgba(94, 234, 212, 0.3), transparent 60%),
radial-gradient(circle at top right, rgba(129, 140, 248, 0.35), transparent 65%);
filter: blur(26px);
z-index: -1;
}
.hero-title {
font-size: clamp(2.4rem, 4.5vw, 3.4rem);
line-height: 1.05;
margin: 0 0 0.9rem;
font-weight: 800;
letter-spacing: 0.02em;
background: conic-gradient(
from 210deg,
#ffffff,
#fef3c7,
#9ae6ff,
#f9a8d4,
#ffffff
);
-webkit-background-clip: text;
color: transparent;
text-shadow:
0 0 22px rgba(148, 163, 255, 0.55),
0 18px 40px rgba(15, 23, 42, 0.9);
}
.hero-sub {
max-width: 640px;
font-size: 0.98rem;
color: var(--muted);
}
.hero-sub strong {
color: #fef3c7;
font-weight: 600;
}
.hero-warning-row {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-top: 1.3rem;
align-items: center;
}
.chip-warning {
padding: 0.3rem 0.9rem;
border-radius: 999px;
font-size: 0.76rem;
text-transform: uppercase;
letter-spacing: 0.18em;
border: 1px solid rgba(248, 113, 113, 0.75);
background: linear-gradient(to right, rgba(248, 113, 113, 0.12), rgba(248, 250, 252, 0.02));
display: inline-flex;
align-items: center;
gap: 0.4rem;
color: #fecaca;
}
.chip-dot {
width: 8px;
height: 8px;
border-radius: 999px;
background: #f97373;
box-shadow: 0 0 12px rgba(248, 113, 113, 0.9);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 0.9rem;
margin: 1.6rem 0 0.8rem;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.78rem 1.6rem;
border-radius: 999px;
border: none;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
text-decoration: none;
transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
white-space: nowrap;
}
.btn-primary {
color: #050815;
background:
radial-gradient(circle at top, #ffe477, #ffc842);
box-shadow:
0 0 0 1px rgba(15, 23, 42, 0.9),
0 12px 28px rgba(0, 0, 0, 0.7);
}
.btn-primary:hover {
transform: translateY(-1px);
box-shadow:
0 0 0 1px rgba(15, 23, 42, 0.9),
0 16px 36px rgba(0, 0, 0, 0.85);
}
.btn-outline {
color: #e4f2ff;
background: rgba(15, 23, 42, 0.96);
border: 1px solid rgba(129, 212, 255, 0.9);
box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
}
.btn-outline:hover {
background: radial-gradient(circle at top, #1e293b, #020617);
}
.meta-row {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
font-size: 0.78rem;
margin-top: 0.6rem;
}
.pill {
padding: 0.32rem 0.75rem;
border-radius: 999px;
background: var(--pill-bg);
border: 1px solid rgba(109, 140, 255, 0.5);
display: inline-flex;
align-items: center;
gap: 0.35rem;
color: var(--muted);
}
.pill-dot {
width: 8px;
height: 8px;
border-radius: 999px;
background: #4ade80;
box-shadow: 0 0 12px rgba(74, 222, 128, 0.9);
}
/* Sections */
main {
padding-top: 0.9rem;
}
.section-label {
font-size: 0.78rem;
letter-spacing: 0.2em;
text-transform: uppercase;
margin: 2.4rem 0 0.4rem;
color: var(--muted);
}
.section-label span {
color: var(--accent-yellow);
}
/* Cards */
.card-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.1rem;
margin-top: 0.9rem;
}
.card {
background: var(--card-bg);
border-radius: 18px;
padding: 1.1rem 1rem 1.2rem;
border: 1px solid var(--card-border);
box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75);
position: relative;
overflow: hidden;
}
.card::before {
content: "";
position: absolute;
inset: -40%;
opacity: 0.1;
background:
radial-gradient(circle at top left, #ffd43b 0, transparent 55%),
radial-gradient(circle at bottom right, #4fd4ff 0, transparent 60%);
mix-blend-mode: soft-light;
pointer-events: none;
}
.card-title {
font-size: 0.8rem;
letter-spacing: 0.16em;
text-transform: uppercase;
margin-bottom: 0.32rem;
color: var(--accent-yellow);
position: relative;
z-index: 1;
}
.card-body {
font-size: 0.9rem;
color: var(--muted);
position: relative;
z-index: 1;
}
.metric {
font-weight: 600;
font-size: 1rem;
color: #ffffff;
}
.metric-label {
font-size: 0.8rem;
opacity: 0.78;
}
.code-inline {
display: inline-block;
padding: 0.18rem 0.4rem;
border-radius: 6px;
background: rgba(10, 19, 45, 0.95);
border: 1px solid rgba(148, 163, 255, 0.5);
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 0.76rem;
margin-top: 0.35rem;
word-break: break-all;
}
/* Chart embed */
.chart-frame {
margin-top: 1.4rem;
border-radius: 24px;
overflow: hidden;
border: 1px solid rgba(148, 163, 255, 0.45);
box-shadow:
0 0 0 1px rgba(15, 23, 42, 0.9),
0 26px 55px rgba(0, 0, 0, 0.9);
background: radial-gradient(circle at top, #111827, #020617);
}
.chart-header {
padding: 0.8rem 1rem 0.4rem;
font-size: 0.8rem;
display: flex;
justify-content: space-between;
align-items: center;
color: var(--muted);
}
.badge-live {
padding: 0.2rem 0.6rem;
border-radius: 999px;
background: rgba(22, 163, 74, 0.12);
border: 1px solid rgba(34, 197, 94, 0.65);
font-size: 0.75rem;
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
.badge-live-dot {
width: 7px;
height: 7px;
border-radius: 999px;
background: #4ade80;
box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
}
.chart-frame iframe {
width: 100%;
height: 440px;
border: none;
display: block;
}
footer {
margin-top: 2.6rem;
padding-top: 1.7rem;
border-top: 1px solid rgba(15, 23, 42, 0.9);
font-size: 0.78rem;
color: var(--muted);
text-align: center;
}
@media (max-width: 640px) {
.top-row {
flex-direction: column;
align-items: flex-start;
}
header.hero {
text-align: left;
}
.hero-actions {
flex-direction: column;
align-items: flex-start;
}
.top-links {
flex-wrap: wrap;
}
}
</style>
</head>
<body>
<div class="shell">
<!-- Top brand / nav -->
<div class="top-row">
<div class="brand-lockup">
<img src="assets/yieldyak-logo.png" alt="Yak Logo" class="brand-logo" />
<div>
<div class="brand-text-main">YIELDYAK</div>
<div class="brand-text-sub">Attack The Yak</div>
</div>
</div>
<div class="top-links">
<a href="https://twitter.com/YieldYakMonad" target="_blank">Twitter / X</a>
<a href="https://nad.fun/token/0xD7a9B8259db6eca5D569f7260FA4878326cd7777" target="_blank">Nad.fun</a>
<a href="https://mevx.io/monad/0xD7a9B8259db6eca5D569f7260FA4878326cd7777" target="_blank">MevX</a>
</div>
</div>
<!-- Hero -->
<header class="hero">
<div class="hero-glow"></div>
<h1 class="hero-title">Attack The Yak and farm like you mean it.</h1>
<p class="hero-sub">
<strong>YieldYak</strong> is a hyper-aggressive yield token designed for crypto degenerates who actually read
the charts. No hand-holding, no training wheels — just tools for those already in the arena.
</p>
<div class="hero-warning-row">
<div class="chip-warning">
<span class="chip-dot"></span>
<span>DEGEN WARNING</span>
</div>
<span style="font-size:0.8rem; color:var(--muted);">
Smart traders only. No exit liquidity guaranteed. Don’t attack the yak with rent money.
</span>
</div>
<div class="hero-actions">
<a class="btn btn-primary"
href="https://mevx.io/monad/0xD7a9B8259db6eca5D569f7260FA4878326cd7777"
target="_blank">
Enter The Market
</a>
<a class="btn btn-outline"
href="https://nad.fun/token/0xD7a9B8259db6eca5D569f7260FA4878326cd7777"
target="_blank">
View Nad.fun Listing
</a>
</div>
<div class="meta-row">
<div class="pill">
<span class="pill-dot"></span>
<span>Live on-chain · Community driven</span>
</div>
<div class="pill">
<span>High risk · High volatility</span>
</div>
</div>
</header>
<main>
<!-- Utility / why it exists -->
<div class="section-label">Utility · <span>Why The Yak Exists</span></div>
<div class="card-row">
<article class="card">
<div class="card-title">Protocol Fuel</div>
<div class="card-body">
Use YieldYak as a utility layer for fees, rewards, and incentives across DeFi tools and on-chain games.
One token, multiple ways to weaponize it.
</div>
</article>
<article class="card">
<div class="card-title">Alignment</div>
<div class="card-body">
Keep power users, early degenerates, and core contributors aligned around the same asset instead of
scattering attention across random hype.
</div>
</article>
<article class="card">
<div class="card-title">Expansion</div>
<div class="card-body">
Designed with integrations in mind — staking pools, LP incentives, loot drops, and on-chain games
can all route through YieldYak.
</div>
</article>
</div>
<!-- Markets -->
<div class="section-label" style="margin-top: 2.6rem;">Markets · <span>Yak Status</span></div>
<div class="card-row">
<article class="card">
<div class="card-title">Price & Volume (Live Soon)</div>
<div class="card-body">
<div class="metric" id="yak-price">$--.--</div>
<div class="metric-label" id="yak-pct">24h: --%</div>
<div class="metric-label" id="yak-volume">Vol: --</div>
<p style="margin-top:0.7rem; font-size:0.8rem; opacity:0.74;">
Live market data will plug in once a public JSON endpoint is available. For now,
trade directly on MevX or Nad.fun using the contract below.
</p>
</div>
</article>
<article class="card">
<div class="card-title">DEX</div>
<div class="card-body">
Primary liquidity currently sits on MevX and Nad.fun. Always verify the contract address
before trading — the yak doesn’t refund copycats.
<div class="code-inline">
0xD7a9B8259db6eca5D569f7260FA4878326cd7777
</div>
</div>
</article>
</div>
<!-- Chart embed -->
<div class="chart-frame">
<div class="chart-header">
<span>YAK / WMON · MevX chart embed</span>
<span class="badge-live">
<span class="badge-live-dot"></span>
Live feed
</span>
</div>
<iframe
src="https://mevx.io/monad/0xD7a9B8259db6eca5D569f7260FA4878326cd7777"
loading="lazy"
referrerpolicy="no-referrer"
allowfullscreen>
</iframe>
</div>
</main>
<footer>
<div>© <span id="year"></span> YieldYak · Attack The Yak.</div>
<div>High risk, high degen. Do your own research.</div>
</footer>
</div>
<script>
// Footer year
document.getElementById("year").textContent = new Date().getFullYear();
// Placeholder market values until a stable price API is wired in
function loadYakMarketData() {
document.getElementById("yak-price").textContent = "$--.--";
document.getElementById("yak-pct").textContent = "24h: --%";
document.getElementById("yak-volume").textContent = "Vol: --";
}
loadYakMarketData();
</script>
</body>
</html>