-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
40 lines (35 loc) · 1.43 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airdrops</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<section class="w-full h-full">
<section class="w-11/12 h-full mx-auto">
<section class="mt-36">
<h2 class="mb-4 text-2xl md:text-4xl">Latest Airdrops.</h2>
<p class="text-sm mb-4">
Here you will find the most recent airdrop campaigns. <br /> Connect and get access to all available
airdrops!
</p>
</section>
<section id="airdropList" class="w-full flex items-center justify-between flex-wrap">
<!-- JavaScript will populate this section with airdrop cards -->
</section>
</section>
</section>
<!-- Modal -->
<div id="modal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center hidden">
<div class="bg-white p-6 rounded-lg max-w-lg mx-auto">
<button id="closeModal" class="absolute top-0 right-0 mt-2 mr-2 text-gray-500">X</button>
<div id="modalContent">
<!-- Modal content will be populated by JavaScript -->
</div>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>