crypto-miner-madness / index.html
02jmp's picture
Create a program for bitcoin mining
bb29b88 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Miner Madness</title>
<link rel="stylesheet" href="style.css">
<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>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#8b5cf6',
secondary: '#f59e0b',
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="text-center mb-12">
<h1 class="text-4xl md:text-6xl font-bold mb-4 bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">
Bitcoin Mining Simulator
</h1>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
Experience the thrill of cryptocurrency mining without the electricity bill!
</p>
</section>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex items-center justify-between mb-6">
<h2 class="text-2xl font-bold text-primary">Mining Dashboard</h2>
<div class="flex items-center space-x-2">
<span class="text-sm text-gray-400">Status:</span>
<span id="mining-status" class="px-3 py-1 rounded-full text-xs font-semibold bg-red-500">OFFLINE</span>
</div>
</div>
<div class="space-y-6">
<div class="bg-gray-700 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-gray-400">Hashrate</span>
<span id="hash-rate" class="font-mono">0 H/s</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2.5">
<div id="hash-progress" class="bg-primary h-2.5 rounded-full" style="width: 0%"></div>
</div>
</div>
<div class="bg-gray-700 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-gray-400">Bitcoins Mined</span>
<span id="btc-mined" class="font-mono">0.00000000 BTC</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2.5">
<div id="btc-progress" class="bg-secondary h-2.5 rounded-full" style="width: 0%"></div>
</div>
</div>
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-700 rounded-lg p-4">
<div class="text-gray-400 text-sm mb-1">Power Usage</div>
<div id="power-usage" class="text-xl font-mono">0 W</div>
</div>
<div class="bg-gray-700 rounded-lg p-4">
<div class="text-gray-400 text-sm mb-1">Temperature</div>
<div id="temperature" class="text-xl font-mono">0°C</div>
</div>
</div>
<button id="toggle-mining" class="w-full py-3 px-4 bg-primary hover:bg-primary-600 rounded-lg font-bold flex items-center justify-center space-x-2 transition-all">
<i data-feather="power"></i>
<span>Start Mining</span>
</button>
</div>
</div>
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-2xl font-bold text-primary mb-6">Mining Rig</h2>
<div class="relative h-64 mb-6 bg-gray-900 rounded-lg overflow-hidden flex items-center justify-center">
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-gray-900 z-10"></div>
<img src="http://static.photos/technology/640x360/42" alt="Mining Rig" class="absolute inset-0 w-full h-full object-cover">
<div class="relative z-20 text-center">
<div class="inline-block bg-black bg-opacity-70 px-4 py-2 rounded-lg">
<div class="text-sm text-gray-400">ASIC Miner</div>
<div class="text-xl font-bold">Antminer S19 Pro</div>
</div>
</div>
</div>
<div class="space-y-4">
<div class="flex justify-between items-center">
<span class="text-gray-400">Mining Pool</span>
<span class="font-medium">BTC.com</span>
</div>
<div class="flex justify-between items-center">
<span class="text-gray-400">Difficulty</span>
<span id="difficulty" class="font-mono">0.00 T</span>
</div>
<div class="flex justify-between items-center">
<span class="text-gray-400">Block Reward</span>
<span class="font-mono">6.25 BTC</span>
</div>
<div class="flex justify-between items-center">
<span class="text-gray-400">Estimated Earnings</span>
<span id="estimated-earnings" class="font-mono">$0.00/day</span>
</div>
</div>
<div class="mt-6 pt-6 border-t border-gray-700">
<h3 class="text-lg font-semibold mb-3">Mining History</h3>
<div class="space-y-3">
<div class="flex justify-between items-center text-sm">
<span>Last 24h</span>
<span id="24h-mined" class="font-mono">0.00000000 BTC</span>
</div>
<div class="flex justify-between items-center text-sm">
<span>Last 7d</span>
<span id="7d-mined" class="font-mono">0.00000000 BTC</span>
</div>
<div class="flex justify-between items-center text-sm">
<span>All Time</span>
<span id="alltime-mined" class="font-mono">0.00000000 BTC</span>
</div>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>