-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwireframe_gemini_optimized.html
More file actions
547 lines (492 loc) · 22.2 KB
/
Copy pathwireframe_gemini_optimized.html
File metadata and controls
547 lines (492 loc) · 22.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumGaze | Next-Gen Crypto Prediction</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/framer-motion@10.16.4/dist/framer-motion.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&family=Space+Mono:wght@400;700&display=swap');
:root {
--neon-blue: #00f3ff;
--neon-pink: #ff00ff;
--neon-green: #00ff9f;
--neon-purple: #9d00ff;
--cyber-dark: #050505;
--cyber-gray: #1a1a1a;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--cyber-dark);
color: white;
font-family: 'Rajdhani', sans-serif;
overflow-x: hidden;
}
h1, h2, h3, .neon-text {
font-family: 'Orbitron', sans-serif;
text-transform: uppercase;
letter-spacing: 2px;
}
.glass-panel {
background: rgba(26, 26, 26, 0.7);
backdrop-filter: blur(15px);
border: 1px solid rgba(0, 243, 255, 0.15);
}
#canvas-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--cyber-dark);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, var(--neon-blue), var(--neon-pink));
border-radius: 4px;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
@keyframes glow-pulse {
0%, 100% { box-shadow: 0 0 10px var(--neon-blue); }
50% { box-shadow: 0 0 30px var(--neon-blue); }
}
@keyframes data-flow {
0% { background-position: 0% 0%; }
100% { background-position: 100% 100%; }
}
.float-element {
animation: float 3s ease-in-out infinite;
}
.glow-element {
animation: glow-pulse 2s ease-in-out infinite;
}
.data-flow-bg {
background: linear-gradient(135deg, transparent, rgba(0, 243, 255, 0.1), transparent);
background-size: 200% 200%;
animation: data-flow 4s linear infinite;
}
.neon-box {
border: 2px solid var(--neon-blue);
box-shadow: 0 0 20px var(--neon-blue), inset 0 0 10px rgba(0, 243, 255, 0.1);
}
.prediction-card {
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.prediction-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
}
.chart-container {
position: relative;
height: 400px;
background: radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.05), transparent);
border-radius: 8px;
overflow: hidden;
}
.heatmap-advanced {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
gap: 3px;
}
.heatmap-cell-advanced {
aspect-ratio: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 0.6rem;
border-radius: 4px;
transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
cursor: pointer;
border: 1px solid rgba(0, 243, 255, 0.2);
backdrop-filter: blur(5px);
}
.heatmap-cell-advanced:hover {
transform: scale(1.2) rotate(5deg);
z-index: 10;
box-shadow: 0 0 25px currentColor;
border: 1px solid currentColor;
}
.sentiment-gauge {
position: relative;
width: 100%;
height: 60px;
background: rgba(0, 0, 0, 0.3);
border-radius: 30px;
overflow: hidden;
border: 1px solid rgba(0, 243, 255, 0.2);
}
.gauge-fill {
height: 100%;
background: linear-gradient(90deg, #ff00ff, #00f3ff, #00ff9f);
transition: width 0.5s ease;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 0.9rem;
}
.tech-stack {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
}
.tech-item {
padding: 1rem;
border: 1px solid rgba(0, 243, 255, 0.2);
border-radius: 4px;
text-align: center;
transition: all 0.3s;
}
.tech-item:hover {
border-color: var(--neon-blue);
background: rgba(0, 243, 255, 0.05);
transform: scale(1.05);
}
.timeline {
position: relative;
padding: 2rem 0;
}
.timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 100%;
background: linear-gradient(180deg, var(--neon-blue), transparent);
}
.timeline-item {
margin-bottom: 2rem;
width: 45%;
}
.timeline-item:nth-child(odd) {
margin-left: 0;
text-align: right;
}
.timeline-item:nth-child(even) {
margin-left: 55%;
}
.timeline-content {
padding: 1.5rem;
background: rgba(26, 26, 26, 0.8);
border: 1px solid rgba(0, 243, 255, 0.2);
border-radius: 4px;
}
@media (max-width: 768px) {
.timeline::before {
left: 20px;
}
.timeline-item {
width: 100%;
margin-left: 60px !important;
text-align: left !important;
}
}
</style>
</head>
<body>
<div id="canvas-container"></div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 px-8 py-4 flex justify-between items-center glass-panel">
<div class="flex items-center gap-3">
<div class="w-12 h-12 neon-box rounded-lg flex items-center justify-center float-element">
<span class="text-lg font-bold text-[#00f3ff]">QG</span>
</div>
<div>
<div class="text-xl font-bold neon-text text-[#00f3ff]">QuantumGaze</div>
<div class="text-[10px] text-gray-500 tracking-widest">NEXT-GEN PREDICTION</div>
</div>
</div>
<div class="hidden md:flex gap-8 text-xs uppercase tracking-widest">
<a href="#hero" class="hover:text-[#00f3ff] transition">Overview</a>
<a href="#market" class="hover:text-[#00f3ff] transition">Market</a>
<a href="#pipeline" class="hover:text-[#00f3ff] transition">Pipeline</a>
<a href="#tech" class="hover:text-[#00f3ff] transition">Technology</a>
</div>
<button class="neon-box px-6 py-2 text-xs uppercase hover:bg-[#00f3ff] hover:text-black transition duration-300">
Launch App
</button>
</nav>
<!-- Hero Section -->
<section id="hero" class="min-h-screen pt-32 px-8 flex flex-col items-center justify-center relative">
<div class="max-w-5xl text-center mb-20">
<div class="mb-8">
<h1 class="text-8xl md:text-9xl mb-4 font-bold leading-tight">
<span style="background: linear-gradient(135deg, #00f3ff, #ff00ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;">
QUANTUM
</span><br>
<span style="color: #00ff9f; text-shadow: 0 0 30px #00ff9f;">GAZE</span>
</h1>
</div>
<p class="text-lg text-gray-300 mb-12 max-w-3xl mx-auto leading-relaxed">
Experience the future of financial forecasting. Our quantum-inspired algorithms analyze billions of data points
to predict cryptocurrency movements with unprecedented precision. Built for traders, powered by AI.
</p>
<div class="flex gap-4 justify-center flex-wrap">
<button class="bg-gradient-to-r from-[#00f3ff] to-[#00ff9f] text-black font-bold px-8 py-4 rounded-lg hover:shadow-[0_0_40px_#00f3ff] transition transform hover:scale-105">
EXPLORE PREDICTIONS
</button>
<button class="border-2 border-[#ff00ff] text-[#ff00ff] font-bold px-8 py-4 rounded-lg hover:bg-[#ff00ff] hover:text-white transition">
VIEW DOCUMENTATION
</button>
</div>
</div>
<!-- Floating Stats -->
<div class="w-full max-w-6xl grid grid-cols-2 md:grid-cols-4 gap-6 mt-20">
<div class="glass-panel p-6 neon-box prediction-card">
<div class="text-xs text-gray-400 uppercase mb-3 font-mono">System Status</div>
<div class="text-4xl font-bold text-[#00ff9f] mb-2">ACTIVE</div>
<div class="text-[10px] text-gray-500">All systems operational</div>
</div>
<div class="glass-panel p-6 neon-box prediction-card">
<div class="text-xs text-gray-400 uppercase mb-3 font-mono">Accuracy Rate</div>
<div class="text-4xl font-bold text-[#00f3ff] mb-2">94.2%</div>
<div class="text-[10px] text-gray-500">Validated across 12 months</div>
</div>
<div class="glass-panel p-6 neon-box prediction-card">
<div class="text-xs text-gray-400 uppercase mb-3 font-mono">Coins Tracked</div>
<div class="text-4xl font-bold text-[#ff00ff] mb-2">500+</div>
<div class="text-[10px] text-gray-500">Real-time monitoring</div>
</div>
<div class="glass-panel p-6 neon-box prediction-card">
<div class="text-xs text-gray-400 uppercase mb-3 font-mono">Response Time</div>
<div class="text-4xl font-bold text-white mb-2">8ms</div>
<div class="text-[10px] text-gray-500">Sub-millisecond latency</div>
</div>
</div>
</section>
<!-- Market Analysis Section -->
<section id="market" class="py-32 px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl mb-16 neon-text text-center">
<span style="color: #00f3ff;">Live</span> <span style="color: #ff00ff;">Market</span> <span style="color: #00ff9f;">Analysis</span>
</h2>
<div class="grid md:grid-cols-3 gap-8 mb-16">
<!-- Main Chart -->
<div class="md:col-span-2 glass-panel p-8 rounded-lg neon-box data-flow-bg">
<div class="flex justify-between items-center mb-8">
<h3 class="text-2xl neon-text">BTC/USDT Prediction</h3>
<div class="flex gap-2">
<button class="px-4 py-2 bg-gray-800 text-xs rounded hover:bg-[#00f3ff] hover:text-black transition">15m</button>
<button class="px-4 py-2 bg-[#00f3ff] text-black text-xs rounded font-bold">1H</button>
<button class="px-4 py-2 bg-gray-800 text-xs rounded hover:bg-[#00f3ff] hover:text-black transition">4H</button>
<button class="px-4 py-2 bg-gray-800 text-xs rounded hover:bg-[#00f3ff] hover:text-black transition">1D</button>
</div>
</div>
<div class="chart-container">
<canvas id="mainChart"></canvas>
</div>
</div>
<!-- Sentiment Panel -->
<div class="glass-panel p-8 rounded-lg border border-gray-800">
<h3 class="text-xl mb-6 neon-text text-[#ff00ff]">Sentiment Score</h3>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2 text-sm">
<span>Social Media</span>
<span class="text-[#00ff9f]">+78%</span>
</div>
<div class="sentiment-gauge">
<div class="gauge-fill" style="width: 78%;">78%</div>
</div>
</div>
<div>
<div class="flex justify-between mb-2 text-sm">
<span>News Sentiment</span>
<span class="text-[#00f3ff]">+52%</span>
</div>
<div class="sentiment-gauge">
<div class="gauge-fill" style="width: 52%;">52%</div>
</div>
</div>
<div>
<div class="flex justify-between mb-2 text-sm">
<span>On-Chain Signal</span>
<span class="text-[#ff00ff]">+85%</span>
</div>
<div class="sentiment-gauge">
<div class="gauge-fill" style="width: 85%;">85%</div>
</div>
</div>
</div>
</div>
</div>
<!-- Heatmap -->
<div class="glass-panel p-8 rounded-lg neon-box">
<h3 class="text-2xl mb-8 neon-text text-[#00ff9f]">Market Heat Index</h3>
<div class="heatmap-advanced" id="heatmapAdvanced"></div>
</div>
</div>
</section>
<!-- ML Pipeline -->
<section id="pipeline" class="py-32 px-8 bg-[#0a0a0a]">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl mb-16 neon-text text-center">Predictive Pipeline</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-content glass-panel">
<h4 class="text-lg font-bold text-[#00f3ff] mb-2">Data Ingestion</h4>
<p class="text-sm text-gray-400">Real-time feeds from Binance, CoinMarketCap, blockchain networks</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content glass-panel">
<h4 class="text-lg font-bold text-[#ff00ff] mb-2">Preprocessing</h4>
<p class="text-sm text-gray-400">Normalization, outlier detection, missing value handling</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content glass-panel">
<h4 class="text-lg font-bold text-[#00ff9f] mb-2">Feature Engineering</h4>
<p class="text-sm text-gray-400">Volume analysis, volatility indexes, sentiment scores</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content glass-panel">
<h4 class="text-lg font-bold text-[#00f3ff] mb-2">Model Selection</h4>
<p class="text-sm text-gray-400">Random Forest, XGBoost, LSTM ensemble methods</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content glass-panel">
<h4 class="text-lg font-bold text-[#ff00ff] mb-2">Validation</h4>
<p class="text-sm text-gray-400">80/20 split, cross-validation, performance metrics</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content glass-panel">
<h4 class="text-lg font-bold text-[#00ff9f] mb-2">Live Prediction</h4>
<p class="text-sm text-gray-400">Real-time forecasts with confidence intervals</p>
</div>
</div>
</div>
</div>
</section>
<!-- Technology Stack -->
<section id="tech" class="py-32 px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl mb-16 neon-text text-center">Technology Stack</h2>
<div class="tech-stack">
<div class="tech-item glass-panel">
<div class="text-2xl mb-3">🧠</div>
<h4 class="font-bold text-[#00f3ff] mb-2">ML Frameworks</h4>
<p class="text-xs text-gray-400">TensorFlow, PyTorch, Scikit-learn</p>
</div>
<div class="tech-item glass-panel">
<div class="text-2xl mb-3">⚡</div>
<h4 class="font-bold text-[#ff00ff] mb-2">Backend</h4>
<p class="text-xs text-gray-400">FastAPI, Node.js, WebSockets</p>
</div>
<div class="tech-item glass-panel">
<div class="text-2xl mb-3">🎨</div>
<h4 class="font-bold text-[#00ff9f] mb-2">Frontend</h4>
<p class="text-xs text-gray-400">React, Three.js, Tailwind CSS</p>
</div>
<div class="tech-item glass-panel">
<div class="text-2xl mb-3">📊</div>
<h4 class="font-bold text-[#00f3ff] mb-2">Data Viz</h4>
<p class="text-xs text-gray-400">Chart.js, D3.js, Plotly</p>
</div>
<div class="tech-item glass-panel">
<div class="text-2xl mb-3">🔗</div>
<h4 class="font-bold text-[#ff00ff] mb-2">APIs</h4>
<p class="text-xs text-gray-400">Binance, CoinMarketCap, NewsAPI</p>
</div>
<div class="tech-item glass-panel">
<div class="text-2xl mb-3">☁️</div>
<h4 class="font-bold text-[#00ff9f] mb-2">Cloud</h4>
<p class="text-xs text-gray-400">AWS, GCP, Docker, Kubernetes</p>
</div>
</div>
</div>
</section>
<footer class="py-12 px-8 border-t border-gray-800 text-center">
<p class="text-gray-500 text-sm font-mono">© 2026 QUANTUMGAZE | NEXT-GENERATION CRYPTO PREDICTION</p>
</footer>
<script>
// Three.js Background
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });
renderer.setSize(window.innerWidth, window.innerHeight);
document.getElementById('canvas-container').appendChild(renderer.domElement);
// Particles
const particlesGeometry = new THREE.BufferGeometry();
const particlesCount = 2500;
const posArray = new Float32Array(particlesCount * 3);
for(let i = 0; i < particlesCount * 3; i++) {
posArray[i] = (Math.random() - 0.5) * 12;
}
particlesGeometry.setAttribute('position', new THREE.BufferAttribute(posArray, 3));
const particlesMaterial = new THREE.PointsMaterial({
size: 0.006,
color: 0x00f3ff,
transparent: true,
opacity: 0.7
});
const particlesMesh = new THREE.Points(particlesGeometry, particlesMaterial);
scene.add(particlesMesh);
// Torus
const torusGeometry = new THREE.TorusGeometry(3, 0.5, 64, 100);
const torusMaterial = new THREE.MeshBasicMaterial({
color: 0xff00ff,
wireframe: true,
transparent: true,
opacity: 0.2
});
const torus = new THREE.Mesh(torusGeometry, torusMaterial);
scene.add(torus);
camera.position.z = 5;
function animate() {
requestAnimationFrame(animate);
particlesMesh.rotation.y += 0.0003;
particlesMesh.rotation.x += 0.0001;
torus.rotation.x += 0.001;
torus.rotation.y += 0.0015;
renderer.render(scene, camera);
}
animate();
// Heatmap
const heatmapAdvanced = document.getElementById('heatmapAdvanced');
const coins = ['BTC', 'ETH', 'BNB', 'SOL', 'XRP', 'ADA', 'DOGE', 'DOT', 'MATIC', 'AVAX', 'SHIB', 'LTC', 'TRX', 'LINK', 'UNI', 'ATOM', 'XMR', 'ETC', 'BCH', 'XLM', 'FIL', 'NEAR'];
coins.forEach(coin => {
const change = (Math.random() * 15 - 7.5).toFixed(1);
const cell = document.createElement('div');
cell.className = 'heatmap-cell-advanced';
if(change > 0) {
cell.style.backgroundColor = `rgba(0, 255, 159, ${Math.abs(change)/15 + 0.3})`;
cell.style.color = '#00ff9f';
} else {
cell.style.backgroundColor = `rgba(255, 0, 255, ${Math.abs(change)/15 + 0.3})`;
cell.style.color = '#ff00ff';
}
cell.innerHTML = `<strong>${coin}</strong><span>${change}%</span>`;
heatmapAdvanced.appendChild(cell);
});
// Responsive
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
</script>
</body>
</html>