-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.35 KB
/
index.html
File metadata and controls
56 lines (52 loc) · 2.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<title>Mina Inu</title>
<link rel="icon" href="minu.png">
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="header">
<img src="minu.png">
<span class="title">Mina Inu</span>
<nav>
<ul>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="https://minascan.io/mainnet/tokens" target="_blank">Explorer</a></li>
<li><a class="nav-link" href="https://discord.gg/dwtqPVqarG">Discord</a></li>
<li><a class="nav-link" href="https://twitter.com/minainutoken">Twitter</a></li>
<li><a class="nav-link" href="https://github.com/MinaInu?tab=repositories">Github</a></li>
</ul>
</nav>
</div>
</header>
<div class="main">
<p class="first">Mina Inu ($MINU) - The First Memecoin On Mina Protocol</p>
<img src="minu.png">
<div class="claim">
<p class="second">Claim the $MINU airdrop!</p>
<p>You are eligible for the airdrop if you staked Mina before 4th June 2024</p>
<br>
<p>Enter your Mina address:</p>
<input class="address" id="address" onkeypress="onChange()" onpaste="onChange()" oninput="onChange()">
<p class="eligible" id="eligible"></p>
<a href="https://airdrop.minainu.com"><button>Claim Airdrop</button></a>
<!-- <button disabled>The airdrop will start after the network upgrade</button> -->
</div>
<p></p>
<br>
<p class="first" id="about">Tokenomics</p>
<span>Max Supply: 1 876 400 000 MINU</span>
<span>Airdrop Distribution: 75%</span>
<span>Future Airdrops: 20%</span>
<span>Development Fund: 5%</span>
</div>
</body>
</html>