File size: 32,264 Bytes
daedac2 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexusMine | Futuristic Cloud Mining</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
neon: {
100: '#e0f9ff',
200: '#b0f0ff',
300: '#80e6ff',
400: '#50ddff',
500: '#20d4ff',
600: '#00aacc',
700: '#007f99',
800: '#005566',
900: '#002a33',
},
dark: {
900: '#0a0a0a',
800: '#1a1a1a',
700: '#2a2a2a',
}
},
fontFamily: {
'sans': ['"Exo 2"', 'sans-serif'],
'mono': ['"Space Mono"', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
glow: {
'0%': { 'box-shadow': '0 0 5px #20d4ff' },
'100%': { 'box-shadow': '0 0 20px #20d4ff' },
}
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');
body {
background-color: #0a0a0a;
color: white;
font-family: 'Exo 2', sans-serif;
overflow-x: hidden;
}
.gradient-text {
background: linear-gradient(90deg, #20d4ff, #a162e8);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.cyber-border {
position: relative;
border: 2px solid transparent;
border-radius: 0.5rem;
}
.cyber-border::before {
content: '';
position: absolute;
inset: 0;
border-radius: 0.5rem;
padding: 2px;
background: linear-gradient(45deg, #20d4ff, #a162e8);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
.grid-pattern {
background-image:
linear-gradient(rgba(32, 212, 255, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(32, 212, 255, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
}
.particle {
position: absolute;
background-color: rgba(32, 212, 255, 0.5);
border-radius: 50%;
pointer-events: none;
}
@keyframes particle-move {
0% {
transform: translateY(0) translateX(0);
opacity: 1;
}
100% {
transform: translateY(-100vh) translateX(100px);
opacity: 0;
}
}
</style>
</head>
<body class="min-h-screen grid-pattern">
<!-- Floating particles -->
<div id="particles-container"></div>
<!-- Navigation -->
<nav class="py-6 px-4 md:px-12 backdrop-blur-md bg-dark-900/80 sticky top-0 z-50 border-b border-neon-900">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-neon-500 rounded-full flex items-center justify-center">
<i class="fas fa-bolt text-dark-900 text-xl"></i>
</div>
<span class="text-2xl font-bold gradient-text">NexusMine</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Home</a>
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Mining</a>
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Music</a>
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">AI Tools</a>
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">About</a>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 bg-neon-500 text-dark-900 font-bold rounded-full hover:bg-neon-400 transition-colors">
Start Mining
</button>
<button class="md:hidden text-neon-300 text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative py-20 px-4 md:px-12">
<div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-12 items-center">
<div class="space-y-8 z-10">
<h1 class="text-4xl md:text-6xl font-bold leading-tight">
<span class="gradient-text">Mine Crypto</span><br>
<span class="text-white">While Listening to</span><br>
<span class="gradient-text">Generational Talent</span>
</h1>
<p class="text-neon-300 text-lg">
The ultimate fusion of cryptocurrency mining and music. Our AI-powered platform dynamically allocates hash rates while you enjoy the meteoric rise of today's musical talents.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="px-8 py-4 bg-neon-500 text-dark-900 font-bold rounded-full hover:bg-neon-400 transition-colors flex items-center justify-center space-x-2">
<i class="fas fa-play"></i>
<span>Watch Demo</span>
</button>
<button class="px-8 py-4 border-2 border-neon-500 text-neon-300 font-bold rounded-full hover:bg-neon-900/30 transition-colors flex items-center justify-center space-x-2">
<i class="fas fa-chart-line"></i>
<span>View Stats</span>
</button>
</div>
<div class="flex items-center space-x-4 pt-4">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-dark-900">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-dark-900">
<img src="https://randomuser.me/api/portraits/women/45.jpg" class="w-10 h-10 rounded-full border-2 border-dark-900">
</div>
<p class="text-neon-300">
<span class="font-bold text-white">2.4M+</span> users mining now
</p>
</div>
</div>
<div class="relative">
<div class="cyber-border p-1 bg-dark-800 rounded-lg">
<div class="bg-dark-900 rounded-lg overflow-hidden">
<div class="h-64 md:h-96 bg-gradient-to-br from-dark-700 to-dark-800 flex items-center justify-center">
<div class="text-center p-8">
<div class="w-24 h-24 md:w-32 md:h-32 bg-neon-500/20 rounded-full flex items-center justify-center mx-auto mb-6 border-2 border-neon-500 animate-pulse-slow">
<i class="fas fa-music text-neon-300 text-3xl md:text-5xl"></i>
</div>
<h3 class="text-xl md:text-2xl font-bold text-white mb-2">Now Playing</h3>
<p class="text-neon-300 text-lg md:text-xl">BujuRocks - Generational Talent</p>
<div class="mt-6">
<a href="https://youtu.be/ZtvvvBnjOZI?si=FqP5lmVdOrCjHwNU" target="_blank" class="inline-flex items-center text-neon-400 hover:text-neon-300">
<i class="fab fa-youtube mr-2"></i>
Watch on YouTube
</a>
</div>
</div>
</div>
</div>
</div>
<div class="absolute -bottom-6 -left-6 w-32 h-32 bg-neon-500/10 rounded-full blur-xl"></div>
<div class="absolute -top-6 -right-6 w-40 h-40 bg-purple-500/10 rounded-full blur-xl"></div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 px-4 md:px-12 bg-gradient-to-b from-dark-900 to-dark-800">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="cyber-border p-6 bg-dark-800 rounded-lg text-center">
<div class="text-neon-500 text-4xl mb-2">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-3xl font-bold gradient-text">$4.2B</h3>
<p class="text-neon-300">Total Mined</p>
</div>
<div class="cyber-border p-6 bg-dark-800 rounded-lg text-center">
<div class="text-neon-500 text-4xl mb-2">
<i class="fas fa-users"></i>
</div>
<h3 class="text-3xl font-bold gradient-text">2.4M+</h3>
<p class="text-neon-300">Active Miners</p>
</div>
<div class="cyber-border p-6 bg-dark-800 rounded-lg text-center">
<div class="text-neon-500 text-4xl mb-2">
<i class="fas fa-microchip"></i>
</div>
<h3 class="text-3xl font-bold gradient-text">42.7K</h3>
<p class="text-neon-300">TH/s Power</p>
</div>
<div class="cyber-border p-6 bg-dark-800 rounded-lg text-center">
<div class="text-neon-500 text-4xl mb-2">
<i class="fas fa-music"></i>
</div>
<h3 class="text-3xl font-bold gradient-text">1.8M</h3>
<p class="text-neon-300">Music Streams</p>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 px-4 md:px-12">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4">
<span class="gradient-text">The Future of Cloud Mining</span>
</h2>
<p class="text-neon-300 max-w-2xl mx-auto">
Combining blockchain technology with AI optimization and musical escapism to create a revolutionary mining experience.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="cyber-border p-8 bg-dark-800 rounded-lg hover:bg-dark-700 transition-colors group">
<div class="w-16 h-16 bg-neon-500/10 rounded-full flex items-center justify-center mb-6 group-hover:bg-neon-500/20 transition-colors">
<i class="fas fa-brain text-neon-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">AI-Powered Allocation</h3>
<p class="text-neon-300">
Our machine learning algorithms dynamically reallocate hash rates across mining pools for maximum efficiency.
</p>
</div>
<div class="cyber-border p-8 bg-dark-800 rounded-lg hover:bg-dark-700 transition-colors group">
<div class="w-16 h-16 bg-neon-500/10 rounded-full flex items-center justify-center mb-6 group-hover:bg-neon-500/20 transition-colors">
<i class="fas fa-exchange-alt text-neon-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Instant Liquidity</h3>
<p class="text-neon-300">
Exchange-linked models enable seamless conversion of mined crypto into liquid assets.
</p>
</div>
<div class="cyber-border p-8 bg-dark-800 rounded-lg hover:bg-dark-700 transition-colors group">
<div class="w-16 h-16 bg-neon-500/10 rounded-full flex items-center justify-center mb-6 group-hover:bg-neon-500/20 transition-colors">
<i class="fas fa-headphones text-neon-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Musical Escapism</h3>
<p class="text-neon-300">
Enjoy generational musical talent while mining, creating the perfect blend of productivity and entertainment.
</p>
</div>
</div>
</div>
</section>
<!-- Mining Demo Section -->
<section class="py-20 px-4 md:px-12 bg-dark-800">
<div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-12 items-center">
<div class="relative">
<div class="cyber-border p-1 bg-dark-800 rounded-lg">
<div class="bg-dark-900 rounded-lg overflow-hidden">
<div class="p-6">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold text-white">Your Mining Dashboard</h3>
<span class="px-3 py-1 bg-neon-900/50 text-neon-400 rounded-full text-sm">Active</span>
</div>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span class="text-neon-300">Hash Rate</span>
<span class="font-mono text-neon-400">142.7 TH/s</span>
</div>
<div class="w-full bg-dark-700 rounded-full h-2">
<div class="bg-neon-500 h-2 rounded-full" style="width: 78%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="text-neon-300">Estimated Daily</span>
<span class="font-mono text-neon-400">0.0042 BTC</span>
</div>
<div class="w-full bg-dark-700 rounded-full h-2">
<div class="bg-purple-500 h-2 rounded-full" style="width: 65%"></div>
</div>
</div>
<div class="grid grid-cols-3 gap-4">
<div class="cyber-border p-3 bg-dark-800 rounded-lg text-center">
<div class="text-neon-300 text-sm mb-1">Temperature</div>
<div class="font-mono text-white">62°C</div>
</div>
<div class="cyber-border p-3 bg-dark-800 rounded-lg text-center">
<div class="text-neon-300 text-sm mb-1">Efficiency</div>
<div class="font-mono text-white">94%</div>
</div>
<div class="cyber-border p-3 bg-dark-800 rounded-lg text-center">
<div class="text-neon-300 text-sm mb-1">Uptime</div>
<div class="font-mono text-white">99.8%</div>
</div>
</div>
<div class="pt-4">
<button class="w-full py-3 bg-neon-500 text-dark-900 font-bold rounded-lg hover:bg-neon-400 transition-colors">
Boost Performance
</button>
</div>
</div>
</div>
</div>
</div>
<div class="absolute -top-6 -left-6 w-32 h-32 bg-neon-500/10 rounded-full blur-xl"></div>
<div class="absolute -bottom-6 -right-6 w-40 h-40 bg-purple-500/10 rounded-full blur-xl"></div>
</div>
<div class="space-y-6">
<h2 class="text-3xl md:text-4xl font-bold">
<span class="gradient-text">Dynamic Mining</span> Experience
</h2>
<p class="text-neon-300">
Cloud cryptocurrency mining remains globally popular, driven by a mix of factors beyond just financial profit. Our platform enhances the experience with elements of skill, control, and musical escapism.
</p>
<ul class="space-y-4">
<li class="flex items-start space-x-3">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-neon-500/20 flex items-center justify-center">
<i class="fas fa-check text-neon-500 text-xs"></i>
</div>
</div>
<span class="text-neon-300">
<span class="font-bold text-white">AI Optimization:</span> Machine learning algorithms dynamically reallocate hash rates
</span>
</li>
<li class="flex items-start space-x-3">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-neon-500/20 flex items-center justify-center">
<i class="fas fa-check text-neon-500 text-xs"></i>
</div>
</div>
<span class="text-neon-300">
<span class="font-bold text-white">Liquid Assets:</span> Exchange-linked models enable instant conversion to cash
</span>
</li>
<li class="flex items-start space-x-3">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-neon-500/20 flex items-center justify-center">
<i class="fas fa-check text-neon-500 text-xs"></i>
</div>
</div>
<span class="text-neon-300">
<span class="font-bold text-white">Musical Integration:</span> Enjoy generational talent while you mine
</span>
</li>
</ul>
<div class="pt-4">
<button class="px-8 py-3 bg-neon-500 text-dark-900 font-bold rounded-full hover:bg-neon-400 transition-colors">
Start Mining Now
</button>
</div>
</div>
</div>
</section>
<!-- Music Integration Section -->
<section class="py-20 px-4 md:px-12">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4">
<span class="gradient-text">Mining Meets Music</span>
</h2>
<p class="text-neon-300 max-w-2xl mx-auto">
The perfect blend of cryptocurrency mining and musical escapism. Discover today's generational talents while earning crypto.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8 items-center">
<div class="space-y-6">
<h3 class="text-2xl font-bold text-white">
BujuRocks - Generational Talent
</h3>
<p class="text-neon-300">
The phenomenon of "generational talent" in the music industry draws in millions of new viewers, offering a unique form of escapism. Now you can enjoy this while mining cryptocurrency.
</p>
<div class="pt-4">
<a href="https://youtu.be/ZtvvvBnjOZI?si=FqP5lmVdOrCjHwNU" target="_blank" class="inline-flex items-center px-6 py-3 bg-dark-800 border border-neon-500/50 text-neon-300 font-bold rounded-full hover:bg-neon-900/30 transition-colors">
<i class="fab fa-youtube mr-2"></i>
Watch on YouTube
</a>
</div>
</div>
<div class="relative">
<div class="cyber-border overflow-hidden rounded-lg aspect-video">
<div class="relative h-0 pb-[56.25%]">
<iframe class="absolute top-0 left-0 w-full h-full" src="https://www.youtube.com/embed/ZtvvvBnjOZI?autoplay=0&mute=1&controls=1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="absolute -top-6 -left-6 w-32 h-32 bg-purple-500/10 rounded-full blur-xl -z-10"></div>
<div class="absolute -bottom-6 -right-6 w-40 h-40 bg-neon-500/10 rounded-full blur-xl -z-10"></div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 md:px-12 bg-gradient-to-b from-dark-800 to-dark-900">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-5xl font-bold mb-6">
<span class="gradient-text">Join the Digital Financial Order</span>
</h2>
<p class="text-neon-300 mb-10">
The current state of blockchain technology, particularly its "talent boom" and the "meteoric rise" of AI, mirrors the early evolution of the internet. Be part of this revolution.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="px-8 py-4 bg-neon-500 text-dark-900 font-bold rounded-full hover:bg-neon-400 transition-colors">
Start Mining Now
</button>
<button class="px-8 py-4 border-2 border-neon-500 text-neon-300 font-bold rounded-full hover:bg-neon-900/30 transition-colors">
Learn More
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-4 md:px-12 bg-dark-900 border-t border-neon-900">
<div class="max-w-7xl mx-auto">
<div class="grid md:grid-cols-4 gap-12">
<div>
<div class="flex items-center space-x-2 mb-6">
<div class="w-10 h-10 bg-neon-500 rounded-full flex items-center justify-center">
<i class="fas fa-bolt text-dark-900 text-xl"></i>
</div>
<span class="text-2xl font-bold gradient-text">NexusMine</span>
</div>
<p class="text-neon-300 mb-6">
The future of cloud cryptocurrency mining combined with musical escapism and AI optimization.
</p>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-dark-800 flex items-center justify-center text-neon-300 hover:text-neon-500 transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-dark-800 flex items-center justify-center text-neon-300 hover:text-neon-500 transition-colors">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-dark-800 flex items-center justify-center text-neon-300 hover:text-neon-500 transition-colors">
<i class="fab fa-youtube"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-dark-800 flex items-center justify-center text-neon-300 hover:text-neon-500 transition-colors">
<i class="fab fa-telegram"></i>
</a>
</div>
</div>
<div>
<h3 class="text-white font-bold text-lg mb-6">Navigation</h3>
<ul class="space-y-3">
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Home</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Mining Dashboard</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Music Integration</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">AI Tools</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">About Us</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-bold text-lg mb-6">Resources</h3>
<ul class="space-y-3">
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Documentation</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">API Reference</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Community</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Blog</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Status</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-bold text-lg mb-6">Legal</h3>
<ul class="space-y-3">
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Privacy Policy</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Terms of Service</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Cookie Policy</a></li>
<li><a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Disclaimer</a></li>
</ul>
</div>
</div>
<div class="border-t border-neon-900 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-neon-300 mb-4 md:mb-0">
© 2023 NexusMine. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Privacy</a>
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Terms</a>
<a href="#" class="text-neon-300 hover:text-neon-500 transition-colors">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Create floating particles
function createParticles() {
const container = document.getElementById('particles-container');
const particleCount = 30;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random size between 2px and 5px
const size = Math.random() * 3 + 2;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random position
const posX = Math.random() * window.innerWidth;
const posY = Math.random() * window.innerHeight;
particle.style.left = `${posX}px`;
particle.style.top = `${posY}px`;
// Random animation
const duration = Math.random() * 20 + 10;
const delay = Math.random() * 5;
particle.style.animation = `particle-move ${duration}s linear ${delay}s infinite`;
container.appendChild(particle);
}
}
// Initialize particles when DOM is loaded
document.addEventListener('DOMContentLoaded', createParticles);
// Mobile menu toggle (placeholder functionality)
document.querySelector('.md\\:hidden').addEventListener('click', function() {
alert('Mobile menu would open here in a full implementation');
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Bujurocks/nexusmine" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |