-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallet.html
63 lines (58 loc) · 3.36 KB
/
wallet.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wallet - EcoOps Platform</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-50">
<nav class="bg-green-600 text-white p-4">
<div class="container mx-auto">
<div class="flex justify-between items-center">
<h1 class="text-2xl font-bold">EcoOps Platform</h1>
<div class="space-x-4">
<a href="index.html" class="px-4 py-2 text-green-200 hover:text-green-100">Dashboard</a>
<a href="knowledge.html" class="px-4 py-2 text-green-200 hover:text-green-100">Knowledge Transfer</a>
<a href="projects.html" class="px-4 py-2 text-green-200 hover:text-green-100">Project Tracking</a>
<a href="tokens.html" class="px-4 py-2 text-green-200 hover:text-green-100">Token Management</a>
<a href="community.html" class="px-4 py-2 text-green-200 hover:text-green-100">Community Hub</a>
<a href="impact.html" class="px-4 py-2 text-green-200 hover:text-green-100">Impact Analysis</a>
<a href="wallet.html" class="px-4 py-2 text-green-100 border-b-2 border-green-100">Wallet</a>
</div>
</div>
</div>
</nav>
<main class="container mx-auto p-8">
<h2 class="text-3xl font-bold mb-6">EcoOps Wallet</h2>
<p class="text-gray-600 mb-4">Manage your EcoOps tokens and connect to various blockchain networks.</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-lg font-semibold mb-4">NEAR Protocol</h3>
<img src="path/to/near-logo.png" alt="NEAR Protocol Logo" class="h-8 mb-4">
<p class="text-gray-600">Balance: <span class="font-bold">0 NEAR</span></p>
<button class="mt-4 bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Connect Wallet</button>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-lg font-semibold mb-4">Flow</h3>
<img src="path/to/flow-logo.png" alt="Flow Logo" class="h-8 mb-4">
<p class="text-gray-600">Balance: <span class="font-bold">0 FLOW</span></p>
<button class="mt-4 bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Connect Wallet</button>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-lg font-semibold mb-4">Tezos</h3>
<img src="path/to/tezos-logo.png" alt="Tezos Logo" class="h-8 mb-4">
<p class="text-gray-600">Balance: <span class="font-bold">0 XTZ</span></p>
<button class="mt-4 bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Connect Wallet</button>
</div>
</div>
</main>
<footer class="bg-gray-800 text-white mt-8 py-6">
<div class="container mx-auto px-4">
<div class="text-center text-gray-400">
<p>© 2024 EcoOps Platform - Generated: 2024-11-17</p>
</div>
</div>
</footer>
</body>
</html>