| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>EMCD - Crypto Mining Solutions</title> |
| <link rel="icon" type="image/x-icon" href="https://emcd.io/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
| body { |
| font-family: 'Inter', sans-serif; |
| overflow-x: hidden; |
| } |
| .hero-gradient { |
| background: linear-gradient(135deg, #1a1c2a 0%, #2a2e42 100%); |
| } |
| .btn-glow:hover { |
| box-shadow: 0 0 15px rgba(99, 102, 241, 0.5); |
| } |
| .nav-link:hover { |
| background: rgba(255, 255, 255, 0.05); |
| } |
| .stat-card { |
| backdrop-filter: blur(10px); |
| background: rgba(255, 255, 255, 0.05); |
| } |
| .mining-card:hover { |
| transform: translateY(-5px); |
| transition: all 0.3s ease; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-900 text-white"> |
| |
| <div id="vanta-bg" class="fixed top-0 left-0 w-full h-full -z-10"></div> |
|
|
| |
| <nav class="relative bg-gray-900 bg-opacity-80 border-b border-gray-800"> |
| <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"> |
| <img class="h-8 w-auto" src="https://emcd.io/images/logo.svg" alt="EMCD logo"> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-10 flex items-baseline space-x-4"> |
| <a href="#" class="nav-link px-3 py-2 rounded-md text-sm font-medium text-white bg-indigo-900 bg-opacity-30">Home</a> |
| <a href="#" class="nav-link px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Mining</a> |
| <a href="#" class="nav-link px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Pools</a> |
| <a href="#" class="nav-link px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Calculator</a> |
| <a href="#" class="nav-link px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">News</a> |
| <a href="#" class="nav-link px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Support</a> |
| </div> |
| </div> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-4 flex items-center md:ml-6"> |
| <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium mr-4 btn-glow"> |
| Sign In |
| </button> |
| <button class="bg-transparent border border-indigo-500 text-indigo-400 hover:bg-indigo-900 hover:bg-opacity-30 px-4 py-2 rounded-md text-sm font-medium btn-glow"> |
| Sign Up |
| </button> |
| </div> |
| </div> |
| <div class="-mr-2 flex md:hidden"> |
| <button type="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"> |
| <i data-feather="menu"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div class="hero-gradient"> |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl"> |
| The Most Profitable <span class="text-indigo-400">Mining Pool</span> |
| </h1> |
| <p class="mt-6 max-w-lg mx-auto text-xl text-gray-300"> |
| Join thousands of miners earning cryptocurrency with our high-performance mining solutions. |
| </p> |
| <div class="mt-10 flex justify-center space-x-4"> |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 btn-glow"> |
| Start Mining Now |
| </a> |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-indigo-400 bg-indigo-900 bg-opacity-30 hover:bg-opacity-50 btn-glow"> |
| Learn More |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="relative bg-gray-900 bg-opacity-80 py-12"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-4"> |
| <div class="stat-card p-6 rounded-lg border border-gray-800"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-indigo-900 bg-opacity-30 p-3 rounded-full"> |
| <i data-feather="cpu" class="h-6 w-6 text-indigo-400"></i> |
| </div> |
| <div class="ml-5"> |
| <h3 class="text-3xl font-bold text-white">1.2M</h3> |
| <p class="text-sm text-gray-400">Active Miners</p> |
| </div> |
| </div> |
| </div> |
| <div class="stat-card p-6 rounded-lg border border-gray-800"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-indigo-900 bg-opacity-30 p-3 rounded-full"> |
| <i data-feather="hash" class="h-6 w-6 text-indigo-400"></i> |
| </div> |
| <div class="ml-5"> |
| <h3 class="text-3xl font-bold text-white">42.5 EH/s</h3> |
| <p class="text-sm text-gray-400">Network Hashrate</p> |
| </div> |
| </div> |
| </div> |
| <div class="stat-card p-6 rounded-lg border border-gray-800"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-indigo-900 bg-opacity-30 p-3 rounded-full"> |
| <i data-feather="clock" class="h-6 w-6 text-indigo-400"></i> |
| </div> |
| <div class="ml-5"> |
| <h3 class="text-3xl font-bold text-white">99.9%</h3> |
| <p class="text-sm text-gray-400">Uptime</p> |
| </div> |
| </div> |
| </div> |
| <div class="stat-card p-6 rounded-lg border border-gray-800"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-indigo-900 bg-opacity-30 p-3 rounded-full"> |
| <i data-feather="dollar-sign" class="h-6 w-6 text-indigo-400"></i> |
| </div> |
| <div class="ml-5"> |
| <h3 class="text-3xl font-bold text-white">$1.2B</h3> |
| <p class="text-sm text-gray-400">Paid to Miners</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-900 bg-opacity-80 py-16"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h2 class="text-3xl font-extrabold text-white sm:text-4xl"> |
| Our <span class="text-indigo-400">Mining Pools</span> |
| </h2> |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 mx-auto"> |
| Choose from our selection of high-performance mining pools optimized for maximum profitability. |
| </p> |
| </div> |
|
|
| <div class="mt-12 grid gap-8 md:grid-cols-2 lg:grid-cols-3"> |
| |
| <div class="mining-card bg-gray-800 bg-opacity-50 rounded-lg overflow-hidden border border-gray-700"> |
| <div class="p-6"> |
| <div class="flex items-center"> |
| <img class="h-10 w-10 rounded-full" src="https://cryptologos.cc/logos/bitcoin-btc-logo.png" alt="Bitcoin"> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-white">Bitcoin</h3> |
| <p class="text-sm text-gray-400">BTC</p> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <div class="flex justify-between text-sm text-gray-300"> |
| <span>Hashrate</span> |
| <span class="font-medium">15.2 EH/s</span> |
| </div> |
| <div class="mt-2 flex justify-between text-sm text-gray-300"> |
| <span>Miners</span> |
| <span class="font-medium">324,521</span> |
| </div> |
| <div class="mt-2 flex justify-between text-sm text-gray-300"> |
| <span>Fee</span> |
| <span class="font-medium text-green-400">1.0%</span> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <button class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none btn-glow"> |
| Join Pool |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mining-card bg-gray-800 bg-opacity-50 rounded-lg overflow-hidden border border-gray-700"> |
| <div class="p-6"> |
| <div class="flex items-center"> |
| <img class="h-10 w-10 rounded-full" src="https://cryptologos.cc/logos/ethereum-eth-logo.png" alt="Ethereum"> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-white">Ethereum</h3> |
| <p class="text-sm text-gray-400">ETH</p> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <div class="flex justify-between text-sm text-gray-300"> |
| <span>Hashrate</span> |
| <span class="font-medium">285 TH/s</span> |
| </div> |
| <div class="mt-2 flex justify-between text-sm text-gray-300"> |
| <span>Miners</span> |
| <span class="font-medium">198,754</span> |
| </div> |
| <div class="mt-2 flex justify-between text-sm text-gray-300"> |
| <span>Fee</span> |
| <span class="font-medium text-green-400">1.0%</span> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <button class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text |
| </body> |
| </html> |