-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpact.html
169 lines (164 loc) · 9.12 KB
/
impact.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impact Analysis - 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-100 border-b-2 border-green-100">Impact Analysis</a>
</div>
</div>
</div>
</nav>
<main class="container mx-auto p-8">
<div class="space-y-8">
<!-- Temporal Analysis -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold mb-6">Long-term Impact Trends</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="space-y-4">
<h4 class="font-medium">Species Population Growth</h4>
<div class="h-48 bg-gray-50 rounded-lg p-4">
<!-- Placeholder for population growth chart -->
<div class="w-full h-full flex items-end space-x-2">
<div class="w-1/6 h-20 bg-green-200"></div>
<div class="w-1/6 h-24 bg-green-300"></div>
<div class="w-1/6 h-28 bg-green-400"></div>
<div class="w-1/6 h-32 bg-green-500"></div>
<div class="w-1/6 h-36 bg-green-600"></div>
<div class="w-1/6 h-40 bg-green-700"></div>
</div>
</div>
<p class="text-sm text-gray-600">6-month trend in monitored species populations</p>
</div>
<div class="space-y-4">
<h4 class="font-medium">Ecosystem Restoration Progress</h4>
<div class="h-48 bg-gray-50 rounded-lg p-4">
<!-- Placeholder for restoration progress chart -->
<div class="w-full h-full flex items-end space-x-2">
<div class="w-1/6 h-32 bg-blue-200"></div>
<div class="w-1/6 h-36 bg-blue-300"></div>
<div class="w-1/6 h-28 bg-blue-400"></div>
<div class="w-1/6 h-40 bg-blue-500"></div>
<div class="w-1/6 h-38 bg-blue-600"></div>
<div class="w-1/6 h-42 bg-blue-700"></div>
</div>
</div>
<p class="text-sm text-gray-600">Area restored over time (hectares)</p>
</div>
</div>
</div>
<!-- Community Impact Metrics -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold mb-6">Community Impact Metrics</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="border p-4 rounded-lg">
<h4 class="font-medium mb-3">Knowledge Transfer</h4>
<div class="space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">Sessions Conducted</span>
<span class="font-bold">156</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">Active Mentors</span>
<span class="font-bold">45</span>
</div>
</div>
</div>
<div class="border p-4 rounded-lg">
<h4 class="font-medium mb-3">Economic Benefits</h4>
<div class="space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">Jobs Created</span>
<span class="font-bold">234</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Local Businesses</span>
<span class="font-bold">56</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Revenue Generated</span>
<span class="font-bold">$125K</span>
</div>
</div>
</div>
<div class="border p-4 rounded-lg">
<h4 class="font-medium mb-3">Social Impact</h4>
<div class="space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">Communities Engaged</span>
<span class="font-bold">45</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Youth Participants</span>
<span class="font-bold">567</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Cultural Sites Protected</span>
<span class="font-bold">23</span>
</div>
</div>
</div>
</div>
</div>
<!-- SDG Alignment -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold mb-6">UN SDG Alignment</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="p-4 border rounded-lg text-center">
<div class="w-16 h-16 mx-auto mb-2 bg-red-500 rounded-lg flex items-center justify-center text-white font-bold">
SDG 13
</div>
<p class="text-sm">Climate Action</p>
<span class="text-green-600 font-bold">87%</span>
</div>
<div class="p-4 border rounded-lg text-center">
<div class="w-16 h-16 mx-auto mb-2 bg-blue-500 rounded-lg flex items-center justify-center text-white font-bold">
SDG 14
</div>
<p class="text-sm">Life Below Water</p>
<span class="text-green-600 font-bold">92%</span>
</div>
<div class="p-4 border rounded-lg text-center">
<div class="w-16 h-16 mx-auto mb-2 bg-green-500 rounded-lg flex items-center justify-center text-white font-bold">
SDG 15
</div>
<p class="text-sm">Life on Land</p>
<span class="text-green-600 font-bold">94%</span>
</div>
<div class="p-4 border rounded-lg text-center">
<div class="w-16 h-16 mx-auto mb-2 bg-yellow-500 rounded-lg flex items-center justify-center text-white font-bold">
SDG 17
</div>
<p class="text-sm">Partnerships</p>
<span class="text-green-600 font-bold">88%</span>
</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>