-
Notifications
You must be signed in to change notification settings - Fork 0
/
barapada.html
68 lines (62 loc) · 2.48 KB
/
barapada.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
if (window.ethereum) {
window.ethereum.autoRefreshOnNetworkChange = false;
window.ethereum.on('chainChanged', () => window.location.reload());
}
</script>
<!-- Include ethers.js -->
<script src="https://cdn.ethers.io/lib/ethers-5.0.umd.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta http-equiv="Permissions-Policy" content="interest-cohort=(), user-id=()" />
<title>Barapada Page</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="content">
<div class="image-table-container">
<img src="images/barapada.png" alt="Barapada">
<table>
<tr>
<th>
<span style="font-size: 20px;">50</span>
<img src="images/wal.png" alt="Wal Image" style="width: 18px; height: auto; margin-left: 5px; margin-right: 0px;">
<span style="font-size: 20px;">NRG</span>
</th>
</tr>
<tr>
<td class="mint-container">
<a href="#" class="mint-button" id="mintButton">Mint Now</a>
</td>
</tr>
</table>
</div>
<h1>Barapada</h1>
<h2>Description</h2>
<p>
<img src="images/wal.png" alt="Wal Image" style="width: 30px; height: auto; margin-right: 5px;">
<span style="font-size: 20px;">OXOO</span>
</p>
<p>NFTs in this collection provide liquidity to Barapada for the Clean Water Initiative between LavaDAO, CryptoChicks NFT community, and Aerial IoT.</p>
<br>
<p class="italic">Coming Soon:</p>
<p class="italic">Personal accounts from impacted villagers, including a statement from our women leaders who are forerunning operations on the ground.</p>
<p class="italic">Stay tuned for updates!</p>
</div>
<script src="js/mint2.js"></script>
<script>
document.addEventListener('DOMContentLoaded', async function () {
document.getElementById('mintButton').addEventListener('click', function () {
if (typeof mintNFT === 'function') {
mintNFT();
} else {
console.error('mintNFT function not found.');
}
});
});
</script>
</body>
</html>