-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (106 loc) · 5.08 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard - 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-100 border-b-2 border-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>
</div>
</div>
</div>
</nav>
<main class="container mx-auto p-8">
<div class="space-y-6">
<div>
<h2 class="text-3xl font-bold">Dashboard</h2>
<p class="text-gray-600">Overall ecosystem operations status and metrics</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-semibold text-lg">Biodiversity Metrics</h3>
<div class="mt-4 space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">Species Monitored</span>
<span class="font-bold">1,234</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Active Regions</span>
<span class="font-bold">12</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Conservation Status</span>
<span class="text-green-600 font-bold">Positive</span>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-semibold text-lg">Knowledge Transfer</h3>
<div class="mt-4 space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">Active Holders</span>
<span class="font-bold">45</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Practices Documented</span>
<span class="font-bold">89</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Verification Rate</span>
<span class="text-green-600 font-bold">92%</span>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-semibold text-lg">Token Economy</h3>
<div class="mt-4 space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">POAPs Issued</span>
<span class="font-bold">2,345</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Active SBTs</span>
<span class="font-bold">567</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">NFT Collections</span>
<span class="font-bold">12</span>
</div>
</div>
</div>
</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>