Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CryptoHivex - Trade Digital Assets Securely</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> | |
| /* Cookie Consent Banner */ | |
| .cookie-consent { | |
| position: fixed; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| background: #1e293b; | |
| color: white; | |
| padding: 1rem; | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: space-between; | |
| align-items: center; | |
| z-index: 999; | |
| } | |
| .cookie-consent.hidden { | |
| display: none; | |
| } | |
| .cookie-consent a { | |
| color: #3b82f6; | |
| text-decoration: underline; | |
| } | |
| .cookie-consent-btn { | |
| background: #3b82f6; | |
| color: white; | |
| border: none; | |
| padding: 0.5rem 1rem; | |
| border-radius: 0.25rem; | |
| cursor: pointer; | |
| margin-left: 1rem; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%); | |
| } | |
| .price-up { | |
| color: #10b981; | |
| } | |
| .price-down { | |
| color: #ef4444; | |
| } | |
| .chart-container { | |
| height: 300px; | |
| } | |
| .blur-effect { | |
| backdrop-filter: blur(10px); | |
| } | |
| .coin-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .nav-link:hover::after { | |
| content: ''; | |
| display: block; | |
| width: 100%; | |
| height: 2px; | |
| background: #3b82f6; | |
| margin-top: 2px; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100 font-sans"> | |
| <!-- Header/Navigation --> | |
| <header class="gradient-bg text-white sticky top-0 z-50 shadow-lg"> | |
| <div class="container mx-auto px-4 py-3"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <i class="fas fa-hive text-2xl text-yellow-300"></i> | |
| <h1 class="text-2xl font-bold">Crypto<span class="text-yellow-300">Hivex</span></h1> | |
| </div> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="#" class="nav-link font-medium hover:text-yellow-300 transition">Markets</a> | |
| <a href="#" class="nav-link font-medium hover:text-yellow-300 transition">Trade</a> | |
| <a href="#" class="nav-link font-medium hover:text-yellow-300 transition">Portfolio</a> | |
| <a href="#" class="nav-link font-medium hover:text-yellow-300 transition">Learn</a> | |
| <a href="#" class="nav-link font-medium hover:text-yellow-300 transition">About</a> | |
| </nav> | |
| <div class="flex items-center space-x-4"> | |
| <button class="bg-yellow-300 hover:bg-yellow-400 text-gray-900 px-4 py-2 rounded-full font-semibold transition"> | |
| Sign Up | |
| </button> | |
| <button class="hidden md:block border border-yellow-300 hover:bg-yellow-300 hover:text-gray-900 text-yellow-300 px-4 py-2 rounded-full font-semibold transition"> | |
| Login | |
| </button> | |
| <button class="md:hidden text-white text-2xl"> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="gradient-bg text-white py-16"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-4">Trade Crypto with Confidence</h2> | |
| <p class="text-xl mb-8 opacity-90">Join CryptoHivex and access the most secure and user-friendly platform for trading digital assets.</p> | |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-yellow-300 hover:bg-yellow-400 text-gray-900 px-6 py-3 rounded-full font-semibold text-lg transition"> | |
| Get Started | |
| </button> | |
| <button class="border border-white hover:bg-white hover:text-gray-900 px-6 py-3 rounded-full font-semibold text-lg transition"> | |
| Learn More | |
| </button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="bg-white bg-opacity-10 rounded-2xl p-6 blur-effect"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <h3 class="text-xl font-semibold">Live Market</h3> | |
| <div class="flex space-x-2"> | |
| <button class="bg-white bg-opacity-20 hover:bg-opacity-30 px-3 py-1 rounded-full text-sm">BTC</button> | |
| <button class="bg-white bg-opacity-20 hover:bg-opacity-30 px-3 py-1 rounded-full text-sm">ETH</button> | |
| <button class="bg-white bg-opacity-20 hover:bg-opacity-30 px-3 py-1 rounded-full text-sm">SOL</button> | |
| </div> | |
| </div> | |
| <div class="chart-container mb-4"> | |
| <canvas id="priceChart"></canvas> | |
| </div> | |
| <div class="grid grid-cols-3 gap-4"> | |
| <div class="bg-white bg-opacity-10 p-3 rounded-lg"> | |
| <p class="text-sm opacity-80">Price</p> | |
| <p class="font-bold">$42,856.34</p> | |
| </div> | |
| <div class="bg-white bg-opacity-10 p-3 rounded-lg"> | |
| <p class="text-sm opacity-80">24h Change</p> | |
| <p class="font-bold price-up">+2.34%</p> | |
| </div> | |
| <div class="bg-white bg-opacity-10 p-3 rounded-lg"> | |
| <p class="text-sm opacity-80">24h Volume</p> | |
| <p class="font-bold">$1.2B</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Market Overview --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex justify-between items-center mb-10"> | |
| <h2 class="text-3xl font-bold text-gray-900">Market Overview</h2> | |
| <div class="flex space-x-2"> | |
| <button class="bg-gray-100 hover:bg-gray-200 px-4 py-2 rounded-lg font-medium">Top Gainers</button> | |
| <button class="bg-gray-100 hover:bg-gray-200 px-4 py-2 rounded-lg font-medium">Top Volume</button> | |
| <button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg font-medium">All Assets</button> | |
| </div> | |
| </div> | |
| <div class="overflow-x-auto"> | |
| <table class="min-w-full divide-y divide-gray-200"> | |
| <thead class="bg-gray-50"> | |
| <tr> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Asset</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Price</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">24h Change</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Market Cap</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Trade</th> | |
| </tr> | |
| </thead> | |
| <tbody class="bg-white divide-y divide-gray-200"> | |
| <tr class="hover:bg-gray-50 transition"> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10"> | |
| <img class="h-10 w-10 rounded-full" src="https://cryptologos.cc/logos/bitcoin-btc-logo.png" alt="BTC"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Bitcoin</div> | |
| <div class="text-sm text-gray-500">BTC</div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">$42,856.34</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm price-up">+2.34%</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$821.5B</td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium">Trade</button> | |
| </td> | |
| </tr> | |
| <tr class="hover:bg-gray-50 transition"> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10"> | |
| <img class="h-10 w-10 rounded-full" src="https://cryptologos.cc/logos/ethereum-eth-logo.png" alt="ETH"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Ethereum</div> | |
| <div class="text-sm text-gray-500">ETH</div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">$2,345.67</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm price-up">+1.56%</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$281.2B</td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium">Trade</button> | |
| </td> | |
| </tr> | |
| <tr class="hover:bg-gray-50 transition"> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10"> | |
| <img class="h-10 w-10 rounded-full" src="https://cryptologos.cc/logos/solana-sol-logo.png" alt="SOL"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Solana</div> | |
| <div class="text-sm text-gray-500">SOL</div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">$102.45</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm price-down">-0.87%</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$43.5B</td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium">Trade</button> | |
| </td> | |
| </tr> | |
| <tr class="hover:bg-gray-50 transition"> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10"> | |
| <img class="h-10 w-10 rounded-full" src="https://cryptologos.cc/logos/cardano-ada-logo.png" alt="ADA"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Cardano</div> | |
| <div class="text-sm text-gray-500">ADA</div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">$0.5123</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm price-up">+3.21%</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$18.1B</td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium">Trade</button> | |
| </td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| <div class="mt-8 text-center"> | |
| <button class="border border-blue-500 text-blue-500 hover:bg-blue-500 hover:text-white px-6 py-3 rounded-full font-medium transition"> | |
| View All Markets | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-900 mb-4">Why Choose CryptoHivex?</h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto">We provide the best trading experience with cutting-edge technology and top-notch security.</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition"> | |
| <div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-shield-alt text-blue-500 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-gray-900">Secure Platform</h3> | |
| <p class="text-gray-600">Multi-layered security with 2FA, cold storage, and insurance protection for your digital assets.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition"> | |
| <div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-bolt text-green-500 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-gray-900">Lightning Fast</h3> | |
| <p class="text-gray-600">High-performance matching engine capable of processing millions of transactions per second.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition"> | |
| <div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-headset text-purple-500 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-gray-900">24/7 Support</h3> | |
| <p class="text-gray-600">Dedicated customer support team available around the clock to assist you with any issues.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Trading Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
| <h2 class="text-3xl font-bold text-gray-900 mb-6">Advanced Trading Tools</h2> | |
| <p class="text-lg text-gray-600 mb-8">Access professional trading tools with real-time market data, advanced charting, and multiple order types to execute your trading strategy.</p> | |
| <div class="space-y-6"> | |
| <div class="flex"> | |
| <div class="flex-shrink-0"> | |
| <div class="flex items-center justify-center h-10 w-10 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-chart-line"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-gray-900">Advanced Charting</h3> | |
| <p class="mt-1 text-gray-600">Multiple chart types, indicators, and drawing tools for technical analysis.</p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="flex-shrink-0"> | |
| <div class="flex items-center justify-center h-10 w-10 rounded-md bg-green-500 text-white"> | |
| <i class="fas fa-robot"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-gray-900">Trading Bots</h3> | |
| <p class="mt-1 text-gray-600">Automate your trading strategies with our customizable trading bots.</p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="flex-shrink-0"> | |
| <div class="flex items-center justify-center h-10 w-10 rounded-md bg-purple-500 text-white"> | |
| <i class="fas fa-bell"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-gray-900">Price Alerts</h3> | |
| <p class="mt-1 text-gray-600">Set custom price alerts and never miss a trading opportunity.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="bg-gray-800 rounded-xl p-6"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <div class="flex items-center"> | |
| <img src="https://cryptologos.cc/logos/bitcoin-btc-logo.png" alt="BTC" class="h-8 w-8 mr-2"> | |
| <span class="text-white font-medium">BTC/USDT</span> | |
| </div> | |
| <div class="text-green-400 font-medium">$42,856.34</div> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg p-4 mb-4"> | |
| <div class="flex justify-between text-sm text-gray-400 mb-2"> | |
| <span>Buy BTC</span> | |
| <span>Available: 1.234 USDT</span> | |
| </div> | |
| <div class="relative mb-2"> | |
| <input type="text" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Amount"> | |
| <div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none"> | |
| <span class="text-gray-400">USDT</span> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-4 gap-2 mb-4"> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">25%</button> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">50%</button> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">75%</button> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">100%</button> | |
| </div> | |
| <button class="w-full bg-green-500 hover:bg-green-600 text-white py-3 rounded-lg font-medium">Buy BTC</button> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg p-4"> | |
| <div class="flex justify-between text-sm text-gray-400 mb-2"> | |
| <span>Sell BTC</span> | |
| <span>Available: 0.0056 BTC</span> | |
| </div> | |
| <div class="relative mb-2"> | |
| <input type="text" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Amount"> | |
| <div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none"> | |
| <span class="text-gray-400">BTC</span> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-4 gap-2 mb-4"> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">25%</button> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">50%</button> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">75%</button> | |
| <button class="bg-gray-700 hover:bg-gray-600 text-white py-2 rounded text-sm">100%</button> | |
| </div> | |
| <button class="w-full bg-red-500 hover:bg-red-600 text-white py-3 rounded-lg font-medium">Sell BTC</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Traders Say</h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto">Join thousands of satisfied traders who trust CryptoHivex with their digital assets.</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Sarah Johnson</div> | |
| <div class="text-sm text-gray-500">Professional Trader</div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"CryptoHivex has the most intuitive interface I've used. The advanced charting tools help me make better trading decisions."</p> | |
| <div class="mt-4 flex text-yellow-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Michael Chen</div> | |
| <div class="text-sm text-gray-500">Institutional Investor</div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"The security features give me peace of mind when trading large volumes. Execution speeds are unmatched in the industry."</p> | |
| <div class="mt-4 flex text-yellow-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Emma Rodriguez</div> | |
| <div class="text-sm text-gray-500">Crypto Enthusiast</div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"As a beginner, I found CryptoHivex very easy to use. The educational resources helped me understand trading concepts quickly."</p> | |
| <div class="mt-4 flex text-yellow-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="far fa-star"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="gradient-bg text-white py-16"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Trading?</h2> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join CryptoHivex today and experience the future of cryptocurrency trading.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-yellow-300 hover:bg-yellow-400 text-gray-900 px-8 py-4 rounded-full font-semibold text-lg transition"> | |
| Create Free Account | |
| </button> | |
| <button class="border border-white hover:bg-white hover:text-gray-900 px-8 py-4 rounded-full font-semibold text-lg transition"> | |
| Learn More | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <i class="fas fa-hive text-2xl text-yellow-300"></i> | |
| <h3 class="text-xl font-bold">Crypto<span class="text-yellow-300">Hivex</span></h3> | |
| </div> | |
| <p class="text-gray-400 mb-4">The most secure and user-friendly platform for trading digital assets.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-twitter text-xl"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-facebook text-xl"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-instagram text-xl"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-linkedin text-xl"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Products</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Exchange</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Wallet</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Mobile App</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Trading Bots</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Resources</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Learn Crypto</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Market Updates</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Company</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Legal</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 CryptoHivex. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Terms</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Privacy</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Cookies</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Live Chat Widget --> | |
| <div id="livechat-widget" class="fixed bottom-6 right-6 z-50 hidden"> | |
| <div class="bg-white rounded-t-lg shadow-xl w-80 overflow-hidden"> | |
| <div class="bg-blue-600 text-white p-3 flex justify-between items-center"> | |
| <h3 class="font-bold">Live Chat Support</h3> | |
| <button id="close-chat" class="text-white hover:text-gray-200"> | |
| <i class="fas fa-times"></i> | |
| </button> | |
| </div> | |
| <div class="h-64 bg-gray-50 p-3 overflow-y-auto" id="chat-messages"> | |
| <div class="text-center text-gray-500 py-4">Connecting to an agent...</div> | |
| </div> | |
| <div class="p-3 border-t"> | |
| <input type="text" placeholder="Type your message..." | |
| class="w-full p-2 border rounded focus:outline-none focus:ring-1 focus:ring-blue-500"> | |
| <button class="mt-2 bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700 w-full"> | |
| Send | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Chat Toggle Button --> | |
| <button id="chat-toggle" class="fixed bottom-6 right-6 bg-blue-600 text-white rounded-full w-14 h-14 flex items-center justify-center shadow-lg hover:bg-blue-700 z-40"> | |
| <i class="fas fa-comment-dots text-xl"></i> | |
| </button> | |
| <!-- Chart.js for the price chart --> | |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | |
| <script> | |
| // Initialize price chart | |
| const ctx = document.getElementById('priceChart').getContext('2d'); | |
| const priceChart = new Chart(ctx, { | |
| type: 'line', | |
| data: { | |
| labels: ['00:00', '04:00', '08:00', '12:00', '16:00', '20:00', '24:00'], | |
| datasets: [{ | |
| label: 'BTC Price', | |
| data: [42000, 42250, 42560, 42340, 42780, 42850, 42856], | |
| borderColor: '#3b82f6', | |
| backgroundColor: 'rgba(59, 130, 246, 0.1)', | |
| borderWidth: 2, | |
| fill: true, | |
| tension: 0.4 | |
| }] | |
| }, | |
| options: { | |
| responsive: true, | |
| maintainAspectRatio: false, | |
| plugins: { | |
| legend: { | |
| display: false | |
| } | |
| }, | |
| scales: { | |
| x: { | |
| grid: { | |
| display: false, | |
| drawBorder: false | |
| }, | |
| ticks: { | |
| color: 'rgba(255, 255, 255, 0.7)' | |
| } | |
| }, | |
| y: { | |
| grid: { | |
| color: 'rgba(255, 255, 255, 0.1)', | |
| drawBorder: false | |
| }, | |
| ticks: { | |
| color: 'rgba(255, 255, 255, 0.7)' | |
| } | |
| } | |
| }, | |
| elements: { | |
| point: { | |
| radius: 0 | |
| } | |
| } | |
| } | |
| }); | |
| // Mobile menu toggle functionality | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const mobileMenuButton = document.querySelector('.md\\:hidden'); | |
| const navLinks = document.querySelector('nav'); | |
| mobileMenuButton.addEventListener('click', function() { | |
| navLinks.classList.toggle('hidden'); | |
| navLinks.classList.toggle('flex'); | |
| navLinks.classList.toggle('flex-col'); | |
| navLinks.classList.toggle('absolute'); | |
| navLinks.classList.toggle('top-16'); | |
| navLinks.classList.toggle('left-0'); | |
| navLinks.classList.toggle('right-0'); | |
| navLinks.classList.toggle('bg-blue-900'); | |
| navLinks.classList.toggle('p-4'); | |
| navLinks.classList.toggle('space-y-4'); | |
| navLinks.classList.toggle('space-x-8'); | |
| }); | |
| // Simulate price updates | |
| setInterval(() => { | |
| const priceElements = document.querySelectorAll('.price-up, .price-down'); | |
| priceElements.forEach(el => { | |
| const isUp = el.classList.contains('price-up'); | |
| const randomChange = (Math.random() * 3).toFixed(2); | |
| if (isUp) { | |
| el.textContent = `+${randomChange}%`; | |
| } else { | |
| el.textContent = `-${randomChange}%`; | |
| } | |
| // Randomly toggle between up and down | |
| if (Math.random() > 0.7) { | |
| el.classList.toggle('price-up'); | |
| el.classList.toggle('price-down'); | |
| } | |
| }); | |
| // Update BTC price in trading widget | |
| const btcPriceElement = document.querySelector('.bg-gray-800 .text-green-400'); | |
| if (btcPriceElement) { | |
| const currentPrice = parseFloat(btcPriceElement.textContent.replace('$', '').replace(',', '')); | |
| const newPrice = (currentPrice + (Math.random() * 200 - 100)).toFixed(2); | |
| btcPriceElement.textContent = `$${newPrice}`; | |
| } | |
| }, 3000); | |
| }); | |
| </script> | |
| <!-- Cookie Consent Banner --> | |
| <div class="cookie-consent hidden" id="cookieConsent"> | |
| <div class="text-sm"> | |
| We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. | |
| <a href="/privacy" class="ml-1">Learn more</a> | |
| </div> | |
| <button class="cookie-consent-btn" id="acceptCookies">Accept</button> | |
| </div> | |
| <script> | |
| // Cookie Consent Logic | |
| document.addEventListener('DOMContentLoaded', function() { | |
| if (!localStorage.getItem('cookiesAccepted')) { | |
| document.getElementById('cookieConsent').classList.remove('hidden'); | |
| } | |
| document.getElementById('acceptCookies').addEventListener('click', function() { | |
| localStorage.setItem('cookiesAccepted', 'true'); | |
| document.getElementById('cookieConsent').classList.add('hidden'); | |
| }); | |
| // Live Chat Toggle | |
| const chatToggle = document.getElementById('chat-toggle'); | |
| const liveChat = document.getElementById('livechat-widget'); | |
| const closeChat = document.getElementById('close-chat'); | |
| chatToggle.addEventListener('click', function() { | |
| liveChat.classList.toggle('hidden'); | |
| }); | |
| closeChat.addEventListener('click', function() { | |
| liveChat.classList.add('hidden'); | |
| }); | |
| // Simulate chat messages | |
| setTimeout(() => { | |
| const chatMessages = document.getElementById('chat-messages'); | |
| chatMessages.innerHTML = ` | |
| <div class="mb-4"> | |
| <div class="bg-blue-100 text-blue-900 rounded-lg p-3 max-w-xs float-left"> | |
| Hello! How can I help you today? | |
| </div> | |
| <div class="clear-both"></div> | |
| </div> | |
| `; | |
| }, 2000); | |
| }); | |
| </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=Mathy25612/cryptohivex" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |