File size: 30,349 Bytes
2db441a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BujuRocks - Digital Music Revolution</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #0f172a;
color: #f8fafc;
}
.gradient-bg {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.glass-card {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.mining-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
border: 1px solid rgba(74, 222, 128, 0.2);
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
}
}
.number-game {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
border: 1px solid rgba(249, 168, 212, 0.2);
}
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
overflow: hidden;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body class="min-h-screen">
<!-- Navigation -->
<nav class="gradient-bg border-b border-gray-800 fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-2xl font-bold text-green-400">Buju<span class="text-pink-400">Rocks</span></span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#home" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="#mining" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Cloud Mining</a>
<a href="#ai" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">AI Innovation</a>
<a href="#game" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Number Game</a>
<a href="#music" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Music</a>
</div>
</div>
</div>
<div class="hidden md:block">
<div class="ml-4 flex items-center md:ml-6">
<a href="https://open.spotify.com/artist/1Hj4CXeTPnA8x3a5L1ONyd?si=zF4i3X52Qm2Y4e9ZZrzJRQ" target="_blank" class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center">
<i class="fab fa-spotify mr-2"></i> Spotify
</a>
</div>
</div>
<div class="-mr-2 flex md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Home</a>
<a href="#mining" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Cloud Mining</a>
<a href="#ai" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">AI Innovation</a>
<a href="#game" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Number Game</a>
<a href="#music" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Music</a>
<a href="https://open.spotify.com/artist/1Hj4CXeTPnA8x3a5L1ONyd?si=zF4i3X52Qm2Y4e9ZZrzJRQ" target="_blank" class="bg-green-500 hover:bg-green-600 text-white block px-3 py-2 rounded-md text-base font-medium flex items-center justify-center">
<i class="fab fa-spotify mr-2"></i> Spotify
</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-24 pb-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center py-12">
<h1 class="text-4xl md:text-6xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-green-400 to-pink-500">
The Future of Music & Technology
</h1>
<p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto">
Where blockchain meets beats, and AI amplifies artistry
</p>
<div class="mt-10 flex justify-center space-x-4">
<a href="#mining" class="bg-green-500 hover:bg-green-600 text-white px-6 py-3 rounded-lg font-medium">
Start Mining
</a>
<a href="#music" class="bg-pink-500 hover:bg-pink-600 text-white px-6 py-3 rounded-lg font-medium">
Explore Music
</a>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mt-16">
<div class="glass-card rounded-xl p-6">
<div class="text-green-400 text-4xl mb-4">
<i class="fas fa-cloud"></i>
</div>
<h3 class="text-xl font-bold mb-2">Cloud Mining</h3>
<p class="text-gray-300">Start earning passive income with our crypto cloud mining platform. No hardware needed.</p>
</div>
<div class="glass-card rounded-xl p-6">
<div class="text-pink-400 text-4xl mb-4">
<i class="fas fa-robot"></i>
</div>
<h3 class="text-xl font-bold mb-2">AI Innovation</h3>
<p class="text-gray-300">Cutting-edge AI tools for music creation, fan engagement, and predictive analytics.</p>
</div>
<div class="glass-card rounded-xl p-6">
<div class="text-purple-400 text-4xl mb-4">
<i class="fas fa-music"></i>
</div>
<h3 class="text-xl font-bold mb-2">Music Revolution</h3>
<p class="text-gray-300">Experience the next generation of music powered by blockchain and AI technologies.</p>
</div>
</div>
</section>
<!-- Cloud Mining Section -->
<section id="mining" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Crypto Cloud Mining</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Experience the digital gold rush with Crypto Cloud Mining
</p>
</div>
<div class="mining-card rounded-xl p-8 max-w-4xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-2xl font-bold mb-4 text-green-400">Start Mining Today</h3>
<p class="text-gray-300 mb-6">
Indeed, crypto mining is the epitome of passive income. Start mining Bitcoin in the cloud without expensive hardware or technical expertise. Just choose your contract size and you are ready to go.
</p>
<ul class="space-y-3 mb-6">
<li class="flex items-center text-gray-300">
<i class="fas fa-check-circle text-green-400 mr-2"></i> No hardware required
</li>
<li class="flex items-center text-gray-300">
<i class="fas fa-check-circle text-green-400 mr-2"></i> 24/7 mining operations
</li>
<li class="flex items-center text-gray-300">
<i class="fas fa-check-circle text-green-400 mr-2"></i> Real-time monitoring
</li>
<li class="flex items-center text-gray-300">
<i class="fas fa-check-circle text-green-400 mr-2"></i> Secure crypto wallet
</li>
</ul>
<button class="bg-green-500 hover:bg-green-600 text-white px-6 py-3 rounded-lg font-medium pulse-animation">
Get Started
</button>
</div>
<div class="glass-card rounded-xl p-6 flex flex-col justify-center">
<h4 class="text-lg font-bold mb-4 text-center">Free Mining Contract</h4>
<div class="mb-4">
<div class="flex justify-between text-sm text-gray-300 mb-1">
<span>Hash Power</span>
<span>10 GH/s</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-green-500 h-2.5 rounded-full" style="width: 45%"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm text-gray-300 mb-1">
<span>Time Remaining</span>
<span>4h 22m</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-blue-500 h-2.5 rounded-full" style="width: 65%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between text-sm text-gray-300 mb-1">
<span>Estimated Earnings</span>
<span>0.000023 BTC</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-purple-500 h-2.5 rounded-full" style="width: 30%"></div>
</div>
</div>
<p class="text-sm text-gray-400 text-center">
The free mining contract renews every 8 hours, allowing you to experience how the platform works.
</p>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mt-12">
<div class="glass-card rounded-xl p-6">
<div class="text-green-400 text-3xl mb-4">
<i class="fas fa-wallet"></i>
</div>
<h3 class="text-xl font-bold mb-2">Crypto Wallet</h3>
<p class="text-gray-300">Your crypto wallet view keeps track of your earnings, providing a consolidated glance at your assets.</p>
</div>
<div class="glass-card rounded-xl p-6">
<div class="text-blue-400 text-3xl mb-4">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-bold mb-2">Multi-Billion Dollar</h3>
<p class="text-gray-300">Join a multi-billion dollar industry with our visionary leadership and innovative platform.</p>
</div>
<div class="glass-card rounded-xl p-6">
<div class="text-purple-400 text-3xl mb-4">
<i class="fas fa-lock"></i>
</div>
<h3 class="text-xl font-bold mb-2">Secure Hash</h3>
<p class="text-gray-300">Our secure hash algorithms ensure your mining operations are protected and efficient.</p>
</div>
</div>
</section>
<!-- AI Innovation Section -->
<section id="ai" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">AI-Powered Music Revolution</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Harnessing the transformative potential of artificial intelligence
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div>
<h3 class="text-2xl font-bold mb-4 text-pink-400">Talent Discovery & Development</h3>
<p class="text-gray-300 mb-6">
In the context of talent scouting and development, AI-driven algorithms analyze vast amounts of data to identify promising individuals with the potential for stardom. From vocal proficiency to stage presence, these algorithms sift through diverse talent pools, streamlining the scouting process and ensuring the discovery of exceptional artists.
</p>
<h3 class="text-2xl font-bold mb-4 text-pink-400">Personalized Fan Experiences</h3>
<p class="text-gray-300 mb-6">
We use machine learning algorithms to generate personalized multimedia content tailored to individual fan preferences. Whether through algorithmically curated playlists or AI-generated music videos, we enhance fan engagement by delivering immersive experiences that resonate with audiences on a profound level.
</p>
<div class="glass-card rounded-xl p-6 mb-6">
<h4 class="text-lg font-bold mb-2 text-green-400">Predictive Analytics</h4>
<p class="text-gray-300">
Whether it's predicting the success of a new music release or forecasting ticket sales for an upcoming concert tour, our predictive analytics tools empower data-driven decisions that maximize ROI and mitigate risks.
</p>
</div>
</div>
<div class="space-y-6">
<div class="glass-card rounded-xl p-6">
<div class="flex items-start">
<div class="text-blue-400 text-2xl mr-4">
<i class="fas fa-globe"></i>
</div>
<div>
<h4 class="text-lg font-bold mb-2">Global Expansion</h4>
<p class="text-gray-300">
As we expand our global footprint, we offer unparalleled opportunities for fan engagement and monetization through our platforms.
</p>
</div>
</div>
</div>
<div class="glass-card rounded-xl p-6">
<div class="flex items-start">
<div class="text-purple-400 text-2xl mr-4">
<i class="fas fa-music"></i>
</div>
<div>
<h4 class="text-lg font-bold mb-2">Music Composition</h4>
<p class="text-gray-300">
AI-driven tools for music composition, such as deep learning-based melody generators and chord progression predictors, empower artists to streamline the songwriting process.
</p>
</div>
</div>
</div>
<div class="glass-card rounded-xl p-6">
<div class="flex items-start">
<div class="text-green-400 text-2xl mr-4">
<i class="fas fa-chart-pie"></i>
</div>
<div>
<h4 class="text-lg font-bold mb-2">Market Analysis</h4>
<p class="text-gray-300">
By analyzing streaming data, social media trends, and music consumption patterns, we identify niche markets and emerging subcultures, empowering artists to innovate.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="mt-12 glass-card rounded-xl p-8">
<h3 class="text-2xl font-bold mb-6 text-center text-pink-400">Audible & Lyrical AI</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="text-center">
<div class="text-4xl text-green-400 mb-4">
<i class="fas fa-brain"></i>
</div>
<h4 class="text-lg font-bold mb-2">Creativity</h4>
<p class="text-gray-300">
AI-enhanced creative workflows foster experimentation and innovation in artistic expression.
</p>
</div>
<div class="text-center">
<div class="text-4xl text-blue-400 mb-4">
<i class="fas fa-users"></i>
</div>
<h4 class="text-lg font-bold mb-2">Fan Engagement</h4>
<p class="text-gray-300">
Deeper connections with fans worldwide through personalized content and experiences.
</p>
</div>
<div class="text-center">
<div class="text-4xl text-purple-400 mb-4">
<i class="fas fa-lightbulb"></i>
</div>
<h4 class="text-lg font-bold mb-2">Business Innovation</h4>
<p class="text-gray-300">
Strategic decision-making powered by machine learning and predictive analytics.
</p>
</div>
</div>
</div>
</section>
<!-- Number Game Section -->
<section id="game" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Guess the Number Game</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Test your luck and win virtual crypto rewards!
</p>
</div>
<div class="number-game rounded-xl p-8 max-w-md mx-auto">
<div class="text-center">
<h3 class="text-2xl font-bold mb-6">Guess Between 1 and 100</h3>
<div class="mb-6">
<input type="number" id="guessInput" min="1" max="100" class="w-full px-4 py-2 rounded-lg bg-gray-800 border border-gray-700 text-white focus:outline-none focus:ring-2 focus:ring-pink-500" placeholder="Enter your guess">
</div>
<button id="guessButton" class="bg-pink-500 hover:bg-pink-600 text-white px-6 py-3 rounded-lg font-medium mb-6">
Submit Guess
</button>
<div id="gameMessage" class="text-lg font-medium mb-4 min-h-8"></div>
<div id="attempts" class="text-gray-300 mb-4">Attempts: 0</div>
<button id="resetButton" class="bg-gray-700 hover:bg-gray-600 text-white px-4 py-2 rounded-lg text-sm hidden">
Play Again
</button>
</div>
</div>
</section>
<!-- Music Section -->
<section id="music" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">BujuRocks Music</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Experience the fusion of music and cutting-edge technology
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center mb-12">
<div>
<h3 class="text-2xl font-bold mb-4 text-green-400">Visionary Leadership</h3>
<p class="text-gray-300 mb-6">
Capitalizing on social media, artist-related multimedia content, and fan engagement to drive sales and profitability. Our platform expands its global footprint, offering unparalleled opportunities for fan engagement and monetization.
</p>
<div class="flex space-x-4">
<a href="https://open.spotify.com/artist/1Hj4CXeTPnA8x3a5L1ONyd?si=zF4i3X52Qm2Y4e9ZZrzJRQ" target="_blank" class="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg font-medium flex items-center">
<i class="fab fa-spotify mr-2"></i> Spotify
</a>
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium flex items-center">
<i class="fab fa-apple mr-2"></i> Apple Music
</a>
</div>
</div>
<div class="glass-card rounded-xl p-6">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/ZtvvvBnjOZI?si=XHstZLcNu_ahLntk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="glass-card rounded-xl p-8">
<h3 class="text-2xl font-bold mb-6 text-center text-pink-400">Latest Releases</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="cursor-pointer hover:scale-105 transition-transform">
<div class="glass-card rounded-lg overflow-hidden mb-3">
<div class="aspect-square bg-gradient-to-br from-green-400 to-blue-500 flex items-center justify-center">
<i class="fas fa-music text-4xl text-white"></i>
</div>
</div>
<h4 class="font-bold">Digital Dreams</h4>
<p class="text-sm text-gray-400">Single • 2023</p>
</div>
<div class="cursor-pointer hover:scale-105 transition-transform">
<div class="glass-card rounded-lg overflow-hidden mb-3">
<div class="aspect-square bg-gradient-to-br from-purple-500 to-pink-500 flex items-center justify-center">
<i class="fas fa-music text-4xl text-white"></i>
</div>
</div>
<h4 class="font-bold">AI Love</h4>
<p class="text-sm text-gray-400">Single • 2023</p>
</div>
<div class="cursor-pointer hover:scale-105 transition-transform">
<div class="glass-card rounded-lg overflow-hidden mb-3">
<div class="aspect-square bg-gradient-to-br from-blue-400 to-green-500 flex items-center justify-center">
<i class="fas fa-music text-4xl text-white"></i>
</div>
</div>
<h4 class="font-bold">Blockchain Beats</h4>
<p class="text-sm text-gray-400">EP • 2022</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="gradient-bg border-t border-gray-800 py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 text-green-400">BujuRocks</h3>
<p class="text-gray-300">
The future of music powered by blockchain and AI technologies.
</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4 text-gray-300">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#mining" class="text-gray-400 hover:text-white">Cloud Mining</a></li>
<li><a href="#ai" class="text-gray-400 hover:text-white">AI Innovation</a></li>
<li><a href="#music" class="text-gray-400 hover:text-white">Music</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4 text-gray-300">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white text-xl">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white text-xl">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white text-xl">
<i class="fab fa-facebook"></i>
</a>
<a href="https://open.spotify.com/artist/1Hj4CXeTPnA8x3a5L1ONyd?si=zF4i3X52Qm2Y4e9ZZrzJRQ" target="_blank" class="text-gray-400 hover:text-white text-xl">
<i class="fab fa-spotify"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-4 text-gray-300">Newsletter</h4>
<p class="text-gray-400 mb-2">Stay updated with our latest</p>
<div class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg bg-gray-700 text-white focus:outline-none w-full">
<button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 BujuRocks. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Number game logic
const guessButton = document.getElementById('guessButton');
const resetButton = document.getElementById('resetButton');
const guessInput = document.getElementById('guessInput');
const gameMessage = document.getElementById('gameMessage');
const attemptsDisplay = document.getElementById('attempts');
let randomNumber = Math.floor(Math.random() * 100) + 1;
let attempts = 0;
guessButton.addEventListener('click', () => {
const userGuess = parseInt(guessInput.value);
if (isNaN(userGuess) || userGuess < 1 || userGuess > 100) {
gameMessage.textContent = 'Please enter a valid number between 1 and 100';
gameMessage.className = 'text-lg font-medium mb-4 min-h-8 text-red-400';
return;
}
attempts++;
attemptsDisplay.textContent = `Attempts: ${attempts}`;
if (userGuess === randomNumber) {
gameMessage.textContent = `Congratulations! You guessed the number in ${attempts} attempts!`;
gameMessage.className = 'text-lg font-medium mb-4 min-h-8 text-green-400';
guessInput.disabled = true;
guessButton.classList.add('hidden');
resetButton.classList.remove('hidden');
} else if (userGuess < randomNumber) {
gameMessage.textContent = 'Too low! Try a higher number.';
gameMessage.className = 'text-lg font-medium mb-4 min-h-8 text-blue-400';
} else {
gameMessage.textContent = 'Too high! Try a lower number.';
gameMessage.className = 'text-lg font-medium mb-4 min-h-8 text-pink-400';
}
guessInput.value = '';
guessInput.focus();
});
resetButton.addEventListener('click', () => {
randomNumber = Math.floor(Math.random() * 100) + 1;
attempts = 0;
attemptsDisplay.textContent = `Attempts: ${attempts}`;
gameMessage.textContent = '';
guessInput.disabled = false;
guessButton.classList.remove('hidden');
resetButton.classList.add('hidden');
guessInput.focus();
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</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/deepseek" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |