pocketminer-pro / index.html
02jmp's picture
Create an bitcoin mining program that can min real bitcoin online and withdraw to wallet also take me to dashboard and make a Url name just pocke
e40e246 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PocketMiner Pro - Bitcoin Mining Platform</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 src="components/navbar.js"></script>
<script src="components/mining-dashboard.js"></script>
<script src="components/wallet-status.js"></script>
</head>
<body class="bg-gray-900 text-white">
<custom-navbar active="mining"></custom-navbar>
<main class="container mx-auto px-4 py-8">
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Mining Dashboard -->
<div class="lg:col-span-2">
<custom-mining-dashboard></custom-mining-dashboard>
</div>
<!-- Wallet Status -->
<div class="lg:col-span-1">
<custom-wallet-status></custom-wallet-status>
</div>
</div>
</main>
<script src="script.js"></script>
<script>
feather.replace();
// Initialize mining simulation
document.addEventListener('DOMContentLoaded', () => {
initMiningSimulation();
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>