-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlive.html
More file actions
237 lines (210 loc) · 13.1 KB
/
Copy pathlive.html
File metadata and controls
237 lines (210 loc) · 13.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
<!DOCTYPE html>
<html lang="en" class="h-full bg-sc-black">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Ledger | SimplyCodes Truth Engine</title>
<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=Figtree:ital,wght@0,300..900;1,300..900&family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
sc: {
black: '#070707',
surface: '#111111',
border: '#222222',
neon: '#86FC4F',
text: '#E5E5E5',
muted: '#737373'
}
},
fontFamily: {
sans: ['Figtree', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'stream-entry': 'streamEntry 0.3s ease-out forwards',
},
keyframes: {
streamEntry: {
'0%': { opacity: '0', transform: 'translateY(-10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
}
}
}
}
}
</script>
<style>
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.neon-text { text-shadow: 0 0 10px rgba(134, 252, 79, 0.3); }
</style>
</head>
<body class="h-full flex flex-col text-sc-text font-sans antialiased overflow-hidden">
<nav class="h-14 border-b border-sc-border bg-sc-surface flex items-center justify-between px-6 shrink-0 z-50">
<div class="flex items-center gap-6">
<a href="index.html" class="font-bold tracking-tight text-white hover:text-sc-neon transition-colors">← Exit to Home</a>
<div class="h-4 w-px bg-sc-border"></div>
<div class="flex items-center gap-2 text-xs font-mono text-sc-neon">
<span class="relative flex h-2 w-2">
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-sc-neon opacity-75"></span>
<span class="relative inline-flex rounded-full h-2 w-2 bg-sc-neon"></span>
</span>
LIVE LEDGER :: GLOBAL
</div>
</div>
<div class="text-xs font-mono text-sc-muted">
Latency: 14ms • Server: US-WEST-2
</div>
</nav>
<div class="grid grid-cols-2 md:grid-cols-4 border-b border-sc-border bg-sc-black shrink-0">
<div class="p-6 border-r border-sc-border">
<div class="text-xs font-mono text-sc-muted uppercase tracking-widest mb-1">Active Validators</div>
<div class="text-2xl font-mono font-bold text-white flex items-center gap-2">
4,291 <span class="text-xs text-sc-neon bg-sc-neon/10 px-1.5 py-0.5 rounded">● Online</span>
</div>
</div>
<div class="p-6 border-r border-sc-border">
<div class="text-xs font-mono text-sc-muted uppercase tracking-widest mb-1">Verifications (24h)</div>
<div class="text-2xl font-mono font-bold text-white flex items-center gap-2">
1.4M <span class="text-xs text-green-500">↑ 4%</span>
</div>
</div>
<div class="p-6 border-r border-sc-border">
<div class="text-xs font-mono text-sc-muted uppercase tracking-widest mb-1">Global Health</div>
<div class="text-2xl font-mono font-bold text-sc-neon neon-text">
94.2%
</div>
</div>
<div class="p-6">
<div class="text-xs font-mono text-sc-muted uppercase tracking-widest mb-1">Codes Rejected</div>
<div class="text-2xl font-mono font-bold text-white">
8,402
</div>
</div>
</div>
<main class="flex-1 flex overflow-hidden">
<div class="flex-1 bg-sc-black relative flex flex-col">
<div class="h-10 border-b border-sc-border flex items-center px-6 text-xs font-mono text-sc-muted uppercase tracking-widest bg-sc-surface/50">
<div class="w-24">Timestamp</div>
<div class="w-40">Merchant</div>
<div class="flex-1">Action Log</div>
<div class="w-32">Result</div>
<div class="w-32 text-right">Validator</div>
</div>
<div class="flex-1 overflow-y-auto p-6 space-y-1 font-mono text-xs md:text-sm no-scrollbar relative">
<div class="absolute inset-0 pointer-events-none bg-gradient-to-b from-transparent via-sc-neon/5 to-transparent h-32 w-full animate-scan opacity-20"></div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry">
<div class="w-24 text-sc-muted">14:02:41</div>
<div class="w-40 text-white font-bold">NIKE.COM</div>
<div class="flex-1 text-gray-400">Verified code 'JUSTDOIT' (Sitewide)</div>
<div class="w-32 text-sc-neon">● CONFIRMED</div>
<div class="w-32 text-right text-sc-muted">@SarahK</div>
</div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry" style="animation-delay: 0.1s">
<div class="w-24 text-sc-muted">14:02:38</div>
<div class="w-40 text-white font-bold">ADIDAS</div>
<div class="flex-1 text-gray-400">Flagged 'SAVE20' as Expired</div>
<div class="w-32 text-red-500">● REJECTED</div>
<div class="w-32 text-right text-sc-muted">@MikeR</div>
</div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry" style="animation-delay: 0.2s">
<div class="w-24 text-sc-muted">14:02:35</div>
<div class="w-40 text-white font-bold">SEPHORA</div>
<div class="flex-1 text-gray-400">Detected price drop on SK-II</div>
<div class="w-32 text-blue-400">● SIGNAL</div>
<div class="w-32 text-right text-sc-muted">System</div>
</div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry" style="animation-delay: 0.3s">
<div class="w-24 text-sc-muted">14:02:31</div>
<div class="w-40 text-white font-bold">WAYFAIR</div>
<div class="flex-1 text-gray-400">Geo-restriction verified (US Only)</div>
<div class="w-32 text-yellow-500">● FLAGGED</div>
<div class="w-32 text-right text-sc-muted">@DavG</div>
</div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry" style="animation-delay: 0.4s">
<div class="w-24 text-sc-muted">14:02:28</div>
<div class="w-40 text-white font-bold">UBER EATS</div>
<div class="flex-1 text-gray-400">Verified code 'EATS20' (New User)</div>
<div class="w-32 text-sc-neon">● CONFIRMED</div>
<div class="w-32 text-right text-sc-muted">@JessH</div>
</div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry" style="animation-delay: 0.5s">
<div class="w-24 text-sc-muted">14:02:22</div>
<div class="w-40 text-white font-bold">LULULEMON</div>
<div class="flex-1 text-gray-400">Rejected 'LULU50' (Fake Pattern)</div>
<div class="w-32 text-red-500">● REJECTED</div>
<div class="w-32 text-right text-sc-muted">System</div>
</div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry" style="animation-delay: 0.6s">
<div class="w-24 text-sc-muted">14:02:15</div>
<div class="w-40 text-white font-bold">BEST BUY</div>
<div class="flex-1 text-gray-400">Verified Open-Box availability</div>
<div class="w-32 text-sc-neon">● CONFIRMED</div>
<div class="w-32 text-right text-sc-muted">@AlexT</div>
</div>
<div class="flex items-center px-4 py-3 rounded border border-sc-border/50 bg-sc-surface/20 hover:bg-sc-surface hover:border-sc-border transition-colors animate-stream-entry" style="animation-delay: 0.7s">
<div class="w-24 text-sc-muted">14:02:10</div>
<div class="w-40 text-white font-bold">DOORDASH</div>
<div class="flex-1 text-gray-400">Flagged 'FREEFOOD' as Spam</div>
<div class="w-32 text-red-500">● REJECTED</div>
<div class="w-32 text-right text-sc-muted">@SamW</div>
</div>
</div>
</div>
<div class="w-80 border-l border-sc-border bg-sc-surface hidden lg:flex flex-col">
<div class="p-6 border-b border-sc-border">
<h3 class="text-sm font-bold text-white mb-1">Top Validators</h3>
<p class="text-xs text-sc-muted">Real-time leaderboard (24h)</p>
</div>
<div class="flex-1 overflow-y-auto p-4 space-y-4">
<div class="flex items-center gap-3">
<div class="w-8 h-8 rounded bg-sc-border flex items-center justify-center text-xs font-bold text-white">1</div>
<div class="flex-1">
<div class="text-sm font-bold text-white">@SarahK</div>
<div class="text-xs text-sc-neon">99.8% Accuracy</div>
</div>
<div class="text-xs font-mono text-sc-muted">412</div>
</div>
<div class="flex items-center gap-3">
<div class="w-8 h-8 rounded bg-sc-border flex items-center justify-center text-xs font-bold text-white">2</div>
<div class="flex-1">
<div class="text-sm font-bold text-white">@MikeR</div>
<div class="text-xs text-sc-neon">99.1% Accuracy</div>
</div>
<div class="text-xs font-mono text-sc-muted">389</div>
</div>
<div class="flex items-center gap-3">
<div class="w-8 h-8 rounded bg-sc-border flex items-center justify-center text-xs font-bold text-white">3</div>
<div class="flex-1">
<div class="text-sm font-bold text-white">@JessH</div>
<div class="text-xs text-sc-neon">98.5% Accuracy</div>
</div>
<div class="text-xs font-mono text-sc-muted">342</div>
</div>
<div class="flex items-center gap-3 opacity-50">
<div class="w-8 h-8 rounded bg-sc-border flex items-center justify-center text-xs font-bold text-white">4</div>
<div class="flex-1">
<div class="text-sm font-bold text-white">@DavG</div>
<div class="text-xs text-sc-muted">97.2% Accuracy</div>
</div>
<div class="text-xs font-mono text-sc-muted">210</div>
</div>
</div>
<div class="p-6 border-t border-sc-border bg-sc-black">
<h4 class="text-sm font-bold text-white mb-2">Join the Workforce</h4>
<p class="text-xs text-sc-muted mb-4">Turn accuracy into income. Verify codes and earn rewards.</p>
<a href="workforce.html" class="block w-full py-2 bg-sc-border hover:bg-white hover:text-black transition-colors text-center rounded text-sm font-bold">
Start Verifying
</a>
</div>
</div>
</main>
</body>
</html>