File size: 12,345 Bytes
6fcd1e3 | 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 | <!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">
<!-- Vanta.js Background -->
<div id="vanta-bg" class="fixed top-0 left-0 w-full h-full -z-10"></div>
<!-- Navigation -->
<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>
<!-- Hero Section -->
<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>
<!-- Stats Section -->
<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>
<!-- Mining Pools Section -->
<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">
<!-- Bitcoin Pool -->
<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>
<!-- Ethereum Pool -->
<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> |