File size: 1,522 Bytes
e40e246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>