-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
604 lines (586 loc) · 25.1 KB
/
landing.html
File metadata and controls
604 lines (586 loc) · 25.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tezos Systems — The Bloomberg Terminal for Tezos</title>
<meta name="description" content="Free, real-time Tezos blockchain dashboard. 18+ features: live stats, rewards tracker, chain comparisons, whale alerts, and more. Beautiful. Open. No account needed.">
<meta property="og:title" content="Tezos Systems — The Bloomberg Terminal for Tezos">
<meta property="og:description" content="Free, real-time Tezos blockchain dashboard with 18+ features.">
<meta property="og:image" content="https://tezos.systems/og-image.png">
<meta property="og:url" content="https://tezos.systems">
<meta name="twitter:card" content="summary_large_image">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;900&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a1a;
--bg-card: rgba(255,255,255,0.04);
--bg-card-hover: rgba(255,255,255,0.07);
--accent: #00d4ff;
--accent-glow: rgba(0,212,255,0.15);
--purple: #a855f7;
--text-primary: #e0e0e0;
--text-secondary: #6b7280;
--border: rgba(255,255,255,0.06);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
background: var(--bg);
color: var(--text-primary);
min-height: 100vh;
line-height: 1.6;
overflow-x: hidden;
}
/* ─── Hero ─── */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 40px 24px;
position: relative;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
border-radius: 100px;
background: var(--bg-card);
border: 1px solid var(--border);
font-size: 0.75rem;
color: var(--text-secondary);
margin-bottom: 24px;
letter-spacing: 0.05em;
}
.hero-badge .dot {
width: 6px; height: 6px; border-radius: 50%;
background: #00ff88;
box-shadow: 0 0 6px #00ff88;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
font-family: 'Orbitron', monospace;
font-size: clamp(2rem, 6vw, 3.5rem);
font-weight: 900;
line-height: 1.15;
margin-bottom: 16px;
background: linear-gradient(135deg, var(--accent), var(--purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
font-size: clamp(1rem, 2.5vw, 1.25rem);
color: var(--text-secondary);
margin-bottom: 36px;
max-width: 500px;
}
.enter-btn {
display: inline-block;
padding: 16px 40px;
border-radius: 12px;
border: none;
background: var(--accent);
color: #000;
font-family: 'Orbitron', monospace;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.25s;
text-decoration: none;
letter-spacing: 0.04em;
}
.hen-sticker {
position: absolute;
top: 18%;
left: 50%;
margin-left: -75px;
display: inline-flex;
flex-direction: column;
align-items: center;
padding: 14px 28px 12px;
margin-top: 20px;
background: #111;
border: 2px solid #00d4ff;
border-radius: 2px;
text-decoration: none;
cursor: pointer;
transition: all 0.3s;
transform: rotate(-2deg);
box-shadow:
0 0 0 1px rgba(0,212,255,0.15),
0 4px 20px rgba(0,0,0,0.5),
inset 0 0 30px rgba(0,212,255,0.03);
animation: hen-sticker-float 3s ease-in-out infinite;
}
.hen-sticker::before {
content: '';
position: absolute;
inset: 3px;
border: 1px solid rgba(0,212,255,0.15);
border-radius: 1px;
pointer-events: none;
}
.hen-sticker::after {
content: '↗';
position: absolute;
top: 6px;
right: 8px;
font-size: 0.6rem;
color: #00d4ff;
opacity: 0;
transition: opacity 0.2s;
}
.hen-sticker:hover::after { opacity: 0.6; }
.hen-sticker:hover {
transform: rotate(0deg) scale(1.05);
border-color: #00ff88;
box-shadow:
0 0 20px rgba(0,212,255,0.25),
0 0 60px rgba(0,255,136,0.1),
0 8px 30px rgba(0,0,0,0.4);
}
.hen-sticker-icon {
font-size: 1.4rem;
color: #00d4ff;
line-height: 1;
margin-bottom: 4px;
transition: color 0.3s;
}
.hen-sticker:hover .hen-sticker-icon { color: #00ff88; }
.hen-sticker-text {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
font-weight: 700;
color: #e0e0e0;
letter-spacing: 0.1em;
line-height: 1;
}
.hen-sticker-sub {
font-family: 'JetBrains Mono', monospace;
font-size: 0.55rem;
color: #00d4ff;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-top: 4px;
opacity: 0.7;
}
@keyframes hen-sticker-float {
0%, 100% { transform: rotate(-2deg) translateY(0); }
50% { transform: rotate(-1deg) translateY(-6px); }
}
.enter-btn:hover {
transform: translateY(-3px);
box-shadow: 0 0 40px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.4);
}
.scroll-hint {
position: absolute;
bottom: 32px;
font-size: 0.85rem;
color: var(--text-secondary);
opacity: 0.4;
animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
/* ─── Sections ─── */
section { padding: 80px 24px; }
.container { max-width: 960px; margin: 0 auto; }
.section-title {
font-family: 'Orbitron', monospace;
font-size: clamp(1.3rem, 3.5vw, 1.8rem);
text-align: center;
margin-bottom: 8px;
}
.section-sub {
text-align: center;
color: var(--text-secondary);
font-size: 0.95rem;
margin-bottom: 48px;
}
/* ─── Live Stats ─── */
.live-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
max-width: 720px;
margin: 0 auto;
}
.live-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px 16px;
text-align: center;
transition: all 0.3s;
}
.live-card:hover {
border-color: rgba(0,212,255,0.2);
background: var(--bg-card-hover);
}
.live-val {
font-family: 'Orbitron', monospace;
font-size: 1.4rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 6px;
}
.live-label {
font-size: 0.7rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.12em;
}
/* ─── Features ─── */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.feat-cat {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px 24px;
transition: all 0.3s;
}
.feat-cat:hover {
border-color: rgba(255,255,255,0.12);
background: var(--bg-card-hover);
transform: translateY(-2px);
}
.feat-cat-head {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
}
.feat-cat-icon { font-size: 1.4rem; }
.feat-cat-name {
font-family: 'Orbitron', monospace;
font-size: 0.85rem;
font-weight: 600;
color: var(--accent);
letter-spacing: 0.03em;
}
.feat-items { display: flex; flex-direction: column; gap: 12px; }
.feat-item {
padding-left: 12px;
border-left: 2px solid var(--border);
transition: border-color 0.2s;
}
.feat-item:hover { border-left-color: var(--accent); }
.feat-item-name {
font-size: 0.85rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 2px;
}
.feat-item-desc {
font-size: 0.75rem;
color: var(--text-secondary);
line-height: 1.5;
}
/* ─── Themes ─── */
.theme-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 14px;
max-width: 640px;
margin: 0 auto;
}
.theme-card {
background: var(--bg-card);
border: 2px solid var(--border);
border-radius: 12px;
padding: 16px 12px;
text-align: center;
cursor: pointer;
transition: all 0.25s;
}
.theme-card:hover {
border-color: rgba(255,255,255,0.15);
transform: translateY(-2px);
}
.theme-card.selected {
border-color: var(--accent);
box-shadow: 0 0 20px var(--accent-glow);
}
.theme-preview {
width: 48px; height: 48px;
border-radius: 50%;
margin: 0 auto 10px;
position: relative;
overflow: hidden;
}
.theme-accent {
position: absolute;
bottom: 0; right: 0;
width: 50%; height: 50%;
border-radius: 50% 0 0 0;
}
.theme-name {
display: block;
font-size: 0.8rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 2px;
}
.theme-tagline {
display: block;
font-size: 0.65rem;
color: var(--text-secondary);
}
/* ─── Final CTA ─── */
.final {
text-align: center;
padding: 60px 24px 40px;
}
.compare-links {
margin-top: 32px;
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
}
.compare-links a {
padding: 8px 16px;
border-radius: 8px;
background: var(--bg-card);
border: 1px solid var(--border);
color: var(--text-secondary);
text-decoration: none;
font-size: 0.8rem;
transition: all 0.2s;
}
.compare-links a:hover {
background: var(--bg-card-hover);
color: var(--text-primary);
border-color: rgba(255,255,255,0.12);
}
.footer {
text-align: center;
padding: 24px;
font-size: 0.7rem;
color: var(--text-secondary);
opacity: 0.4;
}
.footer a { color: var(--accent); text-decoration: none; }
/* ─── Mobile ─── */
@media (max-width: 640px) {
.live-grid { grid-template-columns: repeat(2, 1fr); }
.features-grid { grid-template-columns: 1fr; }
.theme-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.theme-preview { width: 36px; height: 36px; }
section { padding: 60px 16px; }
}
</style>
</head>
<body>
<!-- Hero -->
<section class="hero">
<a href="/?hen=1" class="hen-sticker" id="hen-top">
<span class="hen-sticker-icon">◎</span>
<span class="hen-sticker-text">hic et nunc</span>
<span class="hen-sticker-sub">live art feed</span>
</a>
<div class="hero-badge"><span class="dot"></span> Live · 7+ years uptime</div>
<h1>The Bloomberg Terminal<br>for Tezos</h1>
<p class="hero-sub">Free. Real-time. Beautiful. No account needed.</p>
<a href="/" class="enter-btn" id="enter-top">Enter Dashboard →</a>
<div class="scroll-hint">↓ See what's inside</div>
</section>
<!-- Live Proof -->
<section>
<div class="container">
<div class="live-grid">
<div class="live-card">
<div class="live-val" id="lp-price">$—</div>
<div class="live-label">XTZ Price</div>
</div>
<div class="live-card">
<div class="live-val" id="lp-staked">—%</div>
<div class="live-label">Staked</div>
</div>
<div class="live-card">
<div class="live-val" id="lp-bakers">—</div>
<div class="live-label">Active Bakers</div>
</div>
<div class="live-card">
<div class="live-val" id="lp-cycle">—</div>
<div class="live-label">Current Cycle</div>
</div>
</div>
</div>
</section>
<!-- Features -->
<section>
<div class="container">
<h2 class="section-title">Everything you need. Nothing you don't.</h2>
<p class="section-sub">18+ features. Toggle what matters to you.</p>
<div class="features-grid">
<div class="feat-cat">
<div class="feat-cat-head">
<span class="feat-cat-icon">📡</span>
<span class="feat-cat-name">Network Intelligence</span>
</div>
<div class="feat-items">
<div class="feat-item"><div class="feat-item-name">Live Stats</div><div class="feat-item-desc">18 real-time metrics across economy, consensus, market, protocol, and network</div></div>
<div class="feat-item"><div class="feat-item-name">Protocol Timeline</div><div class="feat-item-desc">21 upgrades visualized — tap any to see its impact</div></div>
<div class="feat-item"><div class="feat-item-name">Daily Briefing</div><div class="feat-item-desc">Auto-generated narrative that updates every cycle</div></div>
<div class="feat-item"><div class="feat-item-name">Cycle Pulse</div><div class="feat-item-desc">Live progress with block-by-block health monitoring</div></div>
</div>
</div>
<div class="feat-cat">
<div class="feat-cat-head">
<span class="feat-cat-icon">💼</span>
<span class="feat-cat-name">Your Portfolio</span>
</div>
<div class="feat-items">
<div class="feat-item"><div class="feat-item-name">My Tezos</div><div class="feat-item-desc">Enter your address — see baker, rewards, delegation, .tez domain</div></div>
<div class="feat-item"><div class="feat-item-name">Rewards Tracker</div><div class="feat-item-desc">This-cycle earnings, lifetime totals, 30-cycle heatmap</div></div>
<div class="feat-item"><div class="feat-item-name">Staking Calculator</div><div class="feat-item-desc">Estimate returns with live APY data</div></div>
</div>
</div>
<div class="feat-cat">
<div class="feat-cat-head">
<span class="feat-cat-icon">🔍</span>
<span class="feat-cat-name">Market & Discovery</span>
</div>
<div class="feat-items">
<div class="feat-item"><div class="feat-item-name">Price Intelligence</div><div class="feat-item-desc">Per-cycle prediction game, price alerts, market context</div></div>
<div class="feat-item"><div class="feat-item-name">Chain Comparison</div><div class="feat-item-desc">Tezos vs ETH, SOL, ADA, ALGO — live side-by-side</div></div>
<div class="feat-item"><div class="feat-item-name">Baker Leaderboard</div><div class="feat-item-desc">Top bakers ranked by power and efficiency</div></div>
</div>
</div>
<div class="feat-cat">
<div class="feat-cat-head">
<span class="feat-cat-icon">📖</span>
<span class="feat-cat-name">On-Chain Stories</span>
</div>
<div class="feat-items">
<div class="feat-item"><div class="feat-item-name">Whale Tracker</div><div class="feat-item-desc">Live feed of transfers over 1,000 XTZ</div></div>
<div class="feat-item"><div class="feat-item-name">Sleeping Giants</div><div class="feat-item-desc">Dormant wallets waking after months of silence</div></div>
<div class="feat-item"><div class="feat-item-name">NFT Profile</div><div class="feat-item-desc">Your Objkt.com creator and collector stats</div></div>
</div>
</div>
<div class="feat-cat">
<div class="feat-cat-head">
<span class="feat-cat-icon">✨</span>
<span class="feat-cat-name">The Vibes</span>
</div>
<div class="feat-items">
<div class="feat-item"><div class="feat-item-name">12 Themes</div><div class="feat-item-desc">9 animated themes including Abyss, Moss, Warzone + 3 classic — each with its own vibe</div></div>
<div class="feat-item"><div class="feat-item-name">Social Sharing</div><div class="feat-item-desc">Per-card screenshots + 767 pre-written tweets</div></div>
<div class="feat-item"><div class="feat-item-name">Arcade Mode</div><div class="feat-item-desc">Konami code. Easter eggs everywhere.</div></div>
</div>
</div>
</div>
</div>
</section>
<!-- Theme Picker -->
<section>
<div class="container">
<h2 class="section-title">Choose Your Vibe</h2>
<p class="section-sub">Pick a theme. You can change it anytime.</p>
<div class="theme-grid" id="theme-grid"></div>
</div>
</section>
<!-- Final CTA -->
<section class="final">
<a href="/" class="enter-btn" id="enter-bottom" style="font-size:1.1rem;padding:18px 48px;">Enter Dashboard →</a>
<div class="compare-links">
<a href="/compare/tezos-vs-ethereum.html">Tezos vs Ethereum</a>
<a href="/compare/tezos-vs-solana.html">Tezos vs Solana</a>
<a href="/compare/tezos-vs-cardano.html">Tezos vs Cardano</a>
<a href="/compare/tezos-vs-algorand.html">Tezos vs Algorand</a>
</div>
</section>
<div class="footer">
Powered by <a href="https://tez.capital" target="_blank">Tez Capital</a> · Data from <a href="https://api.tzkt.io" target="_blank">TzKT</a> & <a href="https://coingecko.com" target="_blank">CoinGecko</a>
</div>
<script>
// Theme data
function escapeHtml(str) {
return String(str).replace(/[&<>"']/g, function(c) {
return { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''' }[c];
});
}
var THEMES = {
matrix: { bg: '#0a0f0a', accent: '#00ff00', name: 'Matrix', tag: 'Code the Future' },
default: { bg: '#0A0E1A', accent: '#5B8DEF', name: 'Midnight', tag: 'Midnight Premium' },
void: { bg: '#06060C', accent: '#8B5CF6', name: 'Void', tag: 'Deep Space' },
ember: { bg: '#0D0806', accent: '#FF9F43', name: 'Ember', tag: 'Phoenix Rising' },
signal: { bg: '#060A08', accent: '#00E4A0', name: 'Signal', tag: 'Decode the Data' },
clean: { bg: '#F8F9FC', accent: '#2563EB', name: 'Clean', tag: 'Pure Analytics' },
dark: { bg: '#161616', accent: '#D0D0D0', name: 'Dark', tag: 'Zero Distractions' },
bubblegum: { bg: '#1F0E18', accent: '#FF69B4', name: 'Bubblegum', tag: 'Sweet Simplicity' },
nerv: { bg: '#000000', accent: '#FF9830', name: 'NERV', tag: 'Operations Console' },
abyss: { bg: '#020A1E', accent: '#00E5FF', name: 'Abyss', tag: 'Deep Signal' },
moss: { bg: '#040C02', accent: '#50E850', name: 'Moss', tag: 'Living Network' },
warzone: { bg: '#080A02', accent: '#FFC000', name: 'Warzone', tag: 'Command & Control' }
};
// Render theme cards
var grid = document.getElementById('theme-grid');
var selected = localStorage.getItem('tezos-systems-theme') || '';
Object.keys(THEMES).forEach(function(key) {
var t = THEMES[key];
var card = document.createElement('div');
card.className = 'theme-card' + (selected === key ? ' selected' : '');
card.innerHTML = '<div class="theme-preview" style="background:' + t.bg + '"><div class="theme-accent" style="background:' + t.accent + '"></div></div>' +
'<span class="theme-name">' + escapeHtml(t.name) + '</span><span class="theme-tagline">' + escapeHtml(t.tag) + '</span>';
card.addEventListener('click', function() {
localStorage.setItem('tezos-systems-theme', key);
grid.querySelectorAll('.theme-card').forEach(function(c) { c.classList.remove('selected'); });
card.classList.add('selected');
});
grid.appendChild(card);
});
// Enter dashboard buttons — save theme if none selected, go to index
document.querySelectorAll('.enter-btn').forEach(function(btn) {
btn.addEventListener('click', function(e) {
if (!localStorage.getItem('tezos-systems-theme')) {
localStorage.setItem('tezos-systems-theme', 'matrix');
}
});
});
// HEN sticker — save theme and navigate
document.querySelectorAll('.hen-sticker').forEach(function(btn) {
btn.addEventListener('click', function(e) {
e.preventDefault();
if (!localStorage.getItem('tezos-systems-theme')) {
localStorage.setItem('tezos-systems-theme', 'matrix');
}
window.location.href = '/?hen=1';
});
});
// Fetch live data
Promise.all([
fetch('https://api.tzkt.io/v1/head').then(function(r) { return r.json(); }),
fetch('https://api.coingecko.com/api/v3/simple/price?ids=tezos&vs_currencies=usd').then(function(r) { return r.json(); }),
fetch('https://api.tzkt.io/v1/statistics/current').then(function(r) { return r.json(); }),
fetch('https://api.tzkt.io/v1/delegates/count?active=true').then(function(r) { return r.json(); })
]).then(function(data) {
var head = data[0], price = data[1], stats = data[2], bakerCount = data[3];
var pe = document.getElementById('lp-price');
var se = document.getElementById('lp-staked');
var be = document.getElementById('lp-bakers');
var ce = document.getElementById('lp-cycle');
if (pe && price.tezos) pe.textContent = '$' + price.tezos.usd.toFixed(3);
if (ce && head.cycle) ce.textContent = 'C' + head.cycle;
if (be && bakerCount) be.textContent = bakerCount;
var staked = (stats.totalOwnStaked || 0) + (stats.totalExternalStaked || 0);
if (se && staked && stats.totalSupply) {
var pct = (staked / stats.totalSupply * 100).toFixed(1);
se.textContent = pct + '%';
}
}).catch(function(e) { console.warn('Landing data fetch:', e); });
</script>
</body>
</html>