-
Notifications
You must be signed in to change notification settings - Fork 0
/
fw.html
213 lines (201 loc) · 6.78 KB
/
fw.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eco Ops - WB1 | EcoCity | Exotopia NFT Rewards</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8f5;
color: #333;
line-height: 1.6;
}
header {
background: #2e8b57;
color: white;
padding: 1rem;
text-align: center;
}
nav {
background: #3cb371;
color: white;
padding: 0.5rem;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
section {
padding: 2rem;
}
h2 {
color: #2e8b57;
}
.highlight {
background-color: #d4edda;
padding: 1rem;
border-left: 4px solid #2e8b57;
margin-bottom: 1.5rem;
}
footer {
background: #2e8b57;
color: white;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}
.carousel {
display: flex;
overflow-x: auto;
white-space: nowrap;
background-color: #e6ffee;
padding: 1rem;
}
.carousel-item {
display: inline-block;
padding: 1rem;
background-color: #2e8b57;
color: white;
margin: 0 10px;
border-radius: 10px;
text-align: center;
}
.carousel-item.active {
background-color: #3cb371;
}
canvas {
max-width: 600px;
margin: 2rem auto;
display: block;
}
</style>
</head>
<body>
<header>
<h1>Eco Ops - WB1 | EcoCity | Exotopia NFT Rewards System</h1>
</header>
<nav>
<a href="#overview">Overview</a>
<a href="#nft-system">NFT Rewards System</a>
<a href="#community-impact">Community Impact</a>
<a href="#bounty-program">Bounty Program</a>
</nav>
<section id="bioremediation">
<h2>Biological Remediation Process</h2>
<div class="carousel">
<div class="carousel-item active">Step 1: Site Assessment</div>
<div class="carousel-item">Step 2: Contaminant Identification</div>
<div class="carousel-item">Step 3: Treatment Selection</div>
<div class="carousel-item">Step 4: Microbial Inoculation</div>
<div class="carousel-item">Step 5: Monitoring</div>
<div class="carousel-item">Step 6: Evaluation & Reporting</div>
</div>
<canvas id="remediationChart"></canvas>
<canvas id="milestonesChart"></canvas>
</section>
<section id="overview">
<h2>Overview</h2>
<p>
The <strong>Eco Ops - WB1</strong> system is at the heart of our vision to merge real-world ecosystem work with innovative digital rewards. By leveraging blockchain technology, we ensure transparent, traceable, and meaningful impact in regions like Nairobi and Costa Rica.
</p>
</section>
<section id="nft-system">
<h2>EcoCity and Exotopia NFT Rewards System</h2>
<p>
Our unique <strong>NFT Rewards System</strong> connects on-ground ecological actions with a thriving digital economy. Participants earn NFTs (Non-Fungible Tokens) when they complete tasks like planting trees, preserving wetlands, or participating in community education projects.
</p>
</section>
<section id="community-impact">
<h2>Community Impact</h2>
<p>
By integrating <strong>autonomy</strong>, <strong>transparency</strong>, and <strong>incentives</strong>, we empower local communities and build trust. Whether it's planting a tree or launching a micro-eco-business, every action is recognized and rewarded.
</p>
</section>
<section id="bounty-program">
<h2>Bounty Program & Financial Model</h2>
<p>
Our <strong>Bounty Program</strong> allows for the development of decentralized, community-driven environmental tasks. Participants can earn bounties for completing specific eco-work or technical contributions.
</p>
</section>
<footer>
<p>Eco Ops | WB1 | EcoCity | Exotopia NFT Rewards © 2024</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
// Chart 1: Remediation Progress Bar Chart
const ctx1 = document.getElementById('remediationChart').getContext('2d');
const remediationChart = new Chart(ctx1, {
type: 'bar',
data: {
labels: ['Site Assessment', 'Contaminant Identification', 'Treatment Selection', 'Microbial Inoculation', 'Monitoring', 'Evaluation & Reporting'],
datasets: [{
label: 'Process Completion (%)',
data: [90, 80, 70, 65, 75, 85],
backgroundColor: [
'rgba(46, 139, 87, 0.8)',
'rgba(60, 179, 113, 0.8)',
'rgba(255, 165, 0, 0.8)',
'rgba(255, 215, 0, 0.8)',
'rgba(100, 149, 237, 0.8)',
'rgba(128, 0, 128, 0.8)'
],
borderWidth: 1
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
// Chart 2: Project Milestones - 4D Bubble Chart
const ctx2 = document.getElementById('milestonesChart').getContext('2d');
const milestonesChart = new Chart(ctx2, {
type: 'bubble',
data: {
datasets: [{
label: 'Milestone 1: Initiation',
data: [{x: 10, y: 20, r: 15}], // x=Time, y=Cost, r=Impact
backgroundColor: 'rgba(255, 99, 132, 0.8)'
}, {
label: 'Milestone 2: Development',
data: [{x: 20, y: 30, r: 10}],
backgroundColor: 'rgba(54, 162, 235, 0.8)'
}, {
label: 'Milestone 3: Execution',
data: [{x: 30, y: 50, r: 20}],
backgroundColor: 'rgba(75, 192, 192, 0.8)'
}, {
label: 'Milestone 4: Completion',
data: [{x: 40, y: 60, r: 25}],
backgroundColor: 'rgba(153, 102, 255, 0.8)'
}]
},
options: {
scales: {
x: {
title: {
display: true,
text: 'Time (days)'
}
},
y: {
title: {
display: true,
text: 'Cost ($)'
}
}
}
}
});
</script>
</body>
</html>