-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (50 loc) · 2.51 KB
/
Copy pathindex.html
File metadata and controls
59 lines (50 loc) · 2.51 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
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Wagmi Pakistan</title>
<link rel="stylesheet" href="https://unpkg.com/tailwindcss@2.2.19/dist/tailwind.min.css"/>
<link rel="shortcut icon" href="./metadata/4.png" type="image/x-icon">
</head>
<body class="font-sans antialiased text-gray-900 leading-normal tracking-wider bg-green-900 bg-cover">
<div class="max-w-4xl flex items-center h-auto lg:h-screen flex-wrap mx-auto my-32 lg:my-0">
<!--Main Col-->
<div id="profile" class="w-full lg:w-3/5 rounded-lg lg:rounded-l-lg lg:rounded-r-none shadow-2xl bg-white opacity-75 mx-6 lg:mx-0">
<div class="p-4 md:p-12 text-center lg:text-left">
<!-- Image for mobile view-->
<div class="block lg:hidden rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover bg-center" style="background-image: url('https://pbs.twimg.com/media/FbLUUKjVEAE5xgq?format=jpg&name=medium')"></div>
<h1 class="text-3xl font-bold pt-8 lg:pt-0">Wagmi Pakistan</h1>
<div class="mx-auto lg:mx-0 w-4/5 pt-3 border-b-2 border-green-500 opacity-25"></div>
<p class="pt-8 text-md">NFT Fundraising Dapp for Flood Victims in Pakistan</p>
<p class="pt-8 text-sm">Donate:</p>
<div class="pt-12 pb-8">
<button id="MintBronze" class="bg-green-700 hover:bg-green-900 text-white font-bold py-2 px-4 my-2 rounded-full">
Bronze - 0.01 ETH
</button>
<button id="MintSteel" class="bg-green-700 hover:bg-green-900 text-white font-bold py-2 px-4 my-2 rounded-full">
Steel - 0.02 ETH
</button>
<button id="MintGold" class="bg-green-700 hover:bg-green-900 text-white font-bold py-2 px-4 my-2 rounded-full">
Gold - 0.03 ETH
</button>
<button id="MintDiamond" class="bg-green-700 hover:bg-green-900 text-white font-bold py-2 px-4 my-2 rounded-full">
Diamond - 0.04 ETH
</button>
<button id="MintPlatinum" class="bg-green-700 hover:bg-green-900 text-white font-bold py-2 my-2 px-4 rounded-full">
Platinum - 0.05 ETH
</button>
</div>
</div>
</div>
<!--Img Col-->
<div class="w-full lg:w-2/5">
<img src="https://pbs.twimg.com/media/FbLUUKjVEAE5xgq?format=jpg&name=medium" class="rounded-none lg:rounded-lg shadow-2xl hidden lg:block">
</div>
</div>
<script src="https://unpkg.com/popper.js@1/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/tippy.js@4"></script>
<script src="./index.js" type="module"></script>
</body>
</html>