-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
651 lines (592 loc) · 31.8 KB
/
index.html
File metadata and controls
651 lines (592 loc) · 31.8 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="https://res.cloudinary.com/djh1zkn3l/image/upload/v1746359824/xuezkgppkfmsp95uudz0_rvdkyt.png">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DeCharge</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body::before {
content: "";
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background-image: url('data:image/svg+xml;utf8,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="%23d1d5db" stroke-width="0.5"><path d="M0 0 L80 80 M80 0 L0 80"/></g></svg>');
animation: moveGrid 30s linear infinite;
opacity: 0.1;
z-index: -1;
}
@keyframes moveGrid {
0% {background-position: 0 0;}
100% {background-position: 80px 80px;}
}
</style>
</head>
<body class=" text-gray-900 font-sans">
<!-- Navbar -->
<header class="w-full fixed top-0 left-0 bg-black/20 backdrop-blur-md text-white z-50 ">
<div class="max-w-7xl mx-auto px-6 py-4 flex justify-between items-center">
<div class="text-2xl font-bold text-cyan-500 flex items-center">
<img class="w-10" src="https://res.cloudinary.com/djh1zkn3l/image/upload/v1746397384/decharge_logo_transp_h6iwiy.png" alt="dechargeLogo" >
<p>Decharge</p>
</div>
<nav class="space-x-6 hidden md:block">
<a href="#features" class="hover:text-cyan-500">Order</a>
<a href="#how-it-works" class="hover:text-cyan-500">How It Works</a>
<a href="#roadmap" class="hover:text-cyan-500">Features</a>
<a href="#tokenomics" class="hover:text-cyan-500">Rewards</a>
<a href="#ecosystem" class="hover:text-cyan-500">Ecosystem</a>
<a href="#faq" class="hover:text-cyan-500">FAQ</a>
</nav>
<button class="bg-gradient-to-r from-green-400 to-blue-500 text-white px-4 py-2 rounded-full font-semibold">Connect Wallet</button>
</div>
</header>
<section class="relative pt-32 pb-20 px-6 overflow-hidden">
<!-- Vanta Background -->
<div id="vanta-bg" class="absolute inset-0 -z-10"></div>
<!-- Hero Content Container -->
<div class="max-w-7xl mx-auto flex flex-col md:flex-row items-center justify-between gap-10 relative z-10">
<!-- Text Block -->
<div class="md:basis-1/2 space-y-6 bg-black/20 backdrop-blur-md p-6 rounded-2xl text-white shadow-lg border border-white border-opacity-20">
<h1 class="text-5xl font-bold leading-tight">
Power the Future.<br>
<span class="text-cyan-400">On-Chain.</span>
</h1>
<p class="text-lg text-gray-300">
DeCharge is a decentralized protocol revolutionizing how energy flows through Web3, connecting sustainable power sources to blockchain infrastructure.
</p>
<div class="flex flex-wrap gap-4">
<button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-full font-semibold">Buy charger</button>
<button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-full font-semibold">Join reward</button>
<button class="border border-gray-300 px-4 py-2 rounded-full font-semibold text-white">Whitepaper</button>
</div>
</div>
<!-- Hero Image -->
<div class="md:basis-1/2 flex justify-center relative">
<img src="https://res.cloudinary.com/djh1zkn3l/image/upload/v1746408668/virtual_kfkro4.png"
alt="DeCharge Graphic"
class="-bottom-[250px] object-contain absolute" />
</div>
</div>
<!-- Countdown Timer -->
<div class="text-center mt-16">
<div class="inline-block bg-black/20 backdrop-blur-md p-6 rounded-xl text-white shadow-lg border border-white border-opacity-20">
<h2 class="text-lg font-semibold mb-2">Season 2 Sales Countdown</h2>
<div class="flex justify-center space-x-6 text-2xl font-bold" id="countdown">
<div class="text-center">
<div id="days">--</div>
<div class="text-sm font-medium">DAYS</div>
</div>
<div class="text-center">
<div id="hours">--</div>
<div class="text-sm font-medium">HOURS</div>
</div>
<div class="text-center">
<div id="minutes">--</div>
<div class="text-sm font-medium">MINUTES</div>
</div>
<div class="text-center">
<div id="seconds">--</div>
<div class="text-sm font-medium">SECONDS</div>
</div>
</div>
</div>
</div>
</section>
<!-- Include CountUp.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/countup.js/1.9.3/countUp.min.js"></script>
<section class="bg-gray-900 py-16 px-6">
<div class="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<!-- Card 1 -->
<div class="bg-gray-800 rounded-xl p-8 shadow-lg border border-cyan-500">
<h3 class="text-4xl font-bold text-cyan-400 counter" data-target="500000">0</h3>
<p class="mt-2 text-gray-300">Total DeCharge EV<br>in circulation</p>
</div>
<!-- Card 2 -->
<div class="bg-gray-800 rounded-xl p-8 shadow-lg border border-cyan-500">
<h3 class="text-4xl font-bold text-cyan-400 counter" data-target="274">0</h3>
<p class="mt-2 text-gray-300">Energy Nodes<br>online worldwide</p>
</div>
<!-- Card 3 -->
<div class="bg-gray-800 rounded-xl p-8 shadow-lg border border-cyan-500">
<h3 class="text-4xl font-bold text-cyan-400 counter" data-target="9834">0</h3>
<p class="mt-2 text-gray-300">Wallets Connected<br>and growing</p>
</div>
</div>
</section>
<!-- bundle card -->
<section class="bg-[#0b0f1c] text-white py-16 px-4" id="bundle">
<div class="max-w-7xl mx-auto text-center mb-12">
<h2 class="text-4xl font-bold mb-2">Choose Your Bundle</h2>
<p class="text-lg text-gray-300">Pick your preferred DeCharge deployment package</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
<!-- Season 1 -->
<div class="bg-[#101735] p-8 rounded-3xl shadow-xl text-left flex flex-col justify-between">
<div>
<p class="uppercase text-sm font-bold text-blue-400 mb-2">Closed</p>
<h3 class="text-2xl font-semibold mb-4">Season 1</h3>
<ul class="space-y-2 mb-6">
<li class="flex items-center gap-2"><span class="text-green-400 text-xl">✔</span> DeCharge Mini</li>
<li class="flex items-center gap-2"><span class="text-green-400 text-xl">✔</span> DeCharge Beast</li>
</ul>
</div>
<button class="mt-auto bg-gray-600 text-white px-6 py-2 rounded-full cursor-not-allowed opacity-70">Closed!</button>
</div>
<!-- Season 2 -->
<div class="bg-gradient-to-br from-blue-600 to-blue-800 p-8 rounded-3xl shadow-xl text-left text-white relative">
<div>
<p class="uppercase text-sm font-bold text-blue-200 mb-2">Limited Time ✦ Closing Soon!</p>
<h3 class="text-2xl font-semibold mb-1">Season 2</h3>
<p class="text-lg mb-4">Foundation series</p>
<p class="text-4xl font-bold mb-6">$549</p>
<ul class="space-y-2 mb-8">
<li class="flex items-center gap-2"><span class="text-green-300 text-xl">✔</span> Order 5+ to get <strong>$449</strong> per unit</li>
<li class="flex items-center gap-2"><span class="text-green-300 text-xl">✔</span> Priority shipping and VIP support</li>
</ul>
</div>
<button class="mt-auto bg-white text-blue-800 font-semibold px-6 py-3 rounded-full hover:bg-blue-100 transition">Pre-order now</button>
</div>
<!-- Season 3 -->
<div class="bg-[#101735] p-8 rounded-3xl shadow-xl text-left flex flex-col justify-between">
<div>
<p class="uppercase text-sm font-bold text-blue-400 mb-2">Upcoming</p>
<h3 class="text-2xl font-semibold mb-4">Season 3</h3>
<ul class="space-y-2 mb-6">
<li class="flex items-center gap-2"><span class="text-green-400 text-xl">✔</span> DeCharge Beasts</li>
<li class="flex items-center gap-2"><span class="text-green-400 text-xl">✔</span> DC Station Vaults</li>
</ul>
</div>
<button class="mt-auto bg-gray-600 text-white px-6 py-2 rounded-full cursor-not-allowed">Delegated deployment sales</button>
</div>
</div>
</section>
<script>
// Countdown Timer
const launchDate = new Date("2025-08-04T00:00:00Z").getTime();
const countdown = document.getElementById("countdown");
setInterval(() => {
const now = new Date().getTime();
const distance = launchDate - now;
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("days").textContent = days;
document.getElementById("hours").textContent = hours;
document.getElementById("minutes").textContent = minutes;
document.getElementById("seconds").textContent = seconds;
}, 1000);
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script>
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x00ffff, // Neon Electric Blue
backgroundColor: 0x000000,
points: 12.0,
maxDistance: 20.0,
spacing: 15.0
});
</script>
<script>
const counters = document.querySelectorAll('.counter');
const speed = 200; // lower = faster
counters.forEach(counter => {
const updateCount = () => {
const target = +counter.getAttribute('data-target');
const count = +counter.innerText;
const increment = target / speed;
if (count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(updateCount, 20);
} else {
counter.innerText = target.toLocaleString();
}
};
updateCount();
});
</script>
</body>
</html>
<section class="how-it-works-section bg-[#050819] text-white py-24 px-6 md:px-20">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-4xl md:text-5xl font-bold mb-4 text-white">How It Works</h2>
<p class="text-lg text-gray-300 max-w-2xl mx-auto">
Start earning with DeCharge in just three simple steps.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div
class="rounded-2xl border border-cyan-500/20 bg-gradient-to-br from-[#0a0f2d] to-[#0f1a3a] p-6 shadow-[0_0_20px_#00f0ff22] transition-transform transform hover:scale-105"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="text-5xl font-bold text-cyan-400 mb-4 animate-pulse">1</div>
<h3 class="text-xl font-semibold mb-2 text-white">Purchase Your Charger</h3>
<p class="text-gray-400">
Select your preferred DeCharge device Mini, Beast, or Voltbox and join the decentralized energy revolution.
</p>
</div>
<!-- Step 2 -->
<div
class="rounded-2xl border border-cyan-500/20 bg-gradient-to-br from-[#0a0f2d] to-[#0f1a3a] p-6 shadow-[0_0_20px_#00f0ff22] transition-transform transform hover:scale-105"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="text-5xl font-bold text-cyan-400 mb-4 animate-pulse">2</div>
<h3 class="text-xl font-semibold mb-2 text-white">Deploy Your Charger</h3>
<p class="text-gray-400">
Install your charger at a convenient location home, office, or public space and connect it to the DeCharge network.
</p>
</div>
<!-- Step 3 -->
<div
class="rounded-2xl border border-cyan-500/20 bg-gradient-to-br from-[#0a0f2d] to-[#0f1a3a] p-6 shadow-[0_0_20px_#00f0ff22] transition-transform transform hover:scale-105"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="text-5xl font-bold text-cyan-400 mb-4 animate-pulse">3</div>
<h3 class="text-xl font-semibold mb-2 text-white">Earn Rewards</h3>
<p class="text-gray-400">
As users charge their vehicles, you earn rewards. The more your charger is used, the more you earn.
</p>
</div>
</div>
</section>
<section class="features-section bg-[#040714] py-24 px-6 md:px-20 text-white">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-4xl md:text-5xl font-bold mb-4 text-white">DeCharge Features</h2>
<p class="text-lg text-gray-300 max-w-2xl mx-auto">
Cutting-edge technology built for the decentralized energy future.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gradient-to-br from-[#0b102e] to-[#101d3c] p-6 rounded-2xl border border-cyan-500/20 shadow-[0_0_20px_#00f0ff22]" data-aos="zoom-in">
<div class="text-cyan-400 text-3xl mb-4">
⚡
</div>
<h3 class="text-xl font-semibold mb-2 text-white">Ultra-Fast Charging</h3>
<p class="text-gray-400">Power up EVs at lightning speed with next-gen DC fast-charging tech.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gradient-to-br from-[#0b102e] to-[#101d3c] p-6 rounded-2xl border border-cyan-500/20 shadow-[0_0_20px_#00f0ff22]" data-aos="zoom-in" data-aos-delay="100">
<div class="text-cyan-400 text-3xl mb-4">
🌐
</div>
<h3 class="text-xl font-semibold mb-2 text-white">Decentralized Network</h3>
<p class="text-gray-400">Join a peer-powered energy grid where anyone can host and profit from charging.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gradient-to-br from-[#0b102e] to-[#101d3c] p-6 rounded-2xl border border-cyan-500/20 shadow-[0_0_20px_#00f0ff22]" data-aos="zoom-in" data-aos-delay="200">
<div class="text-cyan-400 text-3xl mb-4">
💰
</div>
<h3 class="text-xl font-semibold mb-2 text-white">Tokenized Rewards</h3>
<p class="text-gray-400">Earn crypto every time someone uses your charger — powered by smart contracts.</p>
</div>
<!-- Feature 4 -->
<div class="bg-gradient-to-br from-[#0b102e] to-[#101d3c] p-6 rounded-2xl border border-cyan-500/20 shadow-[0_0_20px_#00f0ff22]" data-aos="zoom-in" data-aos-delay="300">
<div class="text-cyan-400 text-3xl mb-4">
📱
</div>
<h3 class="text-xl font-semibold mb-2 text-white">Mobile App Control</h3>
<p class="text-gray-400">Monitor, manage, and optimize your charger remotely from anywhere.</p>
</div>
<!-- Feature 5 -->
<div class="bg-gradient-to-br from-[#0b102e] to-[#101d3c] p-6 rounded-2xl border border-cyan-500/20 shadow-[0_0_20px_#00f0ff22]" data-aos="zoom-in" data-aos-delay="400">
<div class="text-cyan-400 text-3xl mb-4">
🔒
</div>
<h3 class="text-xl font-semibold mb-2 text-white">Secure & Private</h3>
<p class="text-gray-400">End-to-end encrypted data flows with privacy-first network design.</p>
</div>
<!-- Feature 6 -->
<div class="bg-gradient-to-br from-[#0b102e] to-[#101d3c] p-6 rounded-2xl border border-cyan-500/20 shadow-[0_0_20px_#00f0ff22]" data-aos="zoom-in" data-aos-delay="500">
<div class="text-cyan-400 text-3xl mb-4">
🔄
</div>
<h3 class="text-xl font-semibold mb-2 text-white">Plug & Play Setup</h3>
<p class="text-gray-400">No complex installs. Just power up and connect — DeCharge handles the rest.</p>
</div>
</div>
</section>
<section class="rewards-section bg-[#020c1b] py-24 px-6 md:px-20 text-white">
<div class="text-center mb-16" data-aos="fade-up">
<p class="uppercase text-sm tracking-widest text-cyan-400">Rewards</p>
<h2 class="text-4xl md:text-5xl font-bold mt-2 text-white leading-tight">
Earn More Rewards as Your Charger Gains Popularity.
</h2>
</div>
<!-- Bar Graph -->
<div class="relative flex justify-center items-end gap-2 md:gap-4 mb-12 max-w-4xl mx-auto">
<!-- Bars -->
<div class="flex items-end gap-2 w-full max-w-3xl">
<div class="w-3 md:w-4 h-4 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-6 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-10 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-14 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-20 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-24 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-28 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-32 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-36 bg-blue-400 rounded-full"></div>
<div class="w-3 md:w-4 h-40 bg-cyan-300 rounded-full relative">
<span class="absolute -top-5 right-0 bg-yellow-400 text-white text-xs rounded-full px-2 py-1 shadow-lg">★</span>
</div>
</div>
</div>
<!-- Tiers -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center max-w-5xl mx-auto" data-aos="fade-up">
<div>
<h3 class="text-3xl font-bold text-cyan-300">1X</h3>
<p class="text-gray-400 mt-2 text-sm max-w-[220px] mx-auto">Just for keeping your DeCharge station online*</p>
</div>
<div>
<h3 class="text-3xl font-bold text-cyan-300">5X</h3>
<p class="text-gray-400 mt-2 text-sm max-w-[220px] mx-auto">If at least one charging session occurs per day</p>
</div>
<div>
<h3 class="text-3xl font-bold text-cyan-300">10X</h3>
<p class="text-gray-400 mt-2 text-sm max-w-[220px] mx-auto">If at least three charging sessions occur per day</p>
</div>
</div>
</section>
<!-- DeCharge Ecosystem Features -->
<section class="bg-gradient-to-b from-black via-gray-900 to-black py-20 px-6 text-white">
<div class="max-w-7xl mx-auto text-center mb-16">
<h2 class="text-4xl md:text-5xl font-bold text-electric-blue mb-4">Inside the DeCharge Ecosystem</h2>
<p class="text-gray-400 max-w-2xl mx-auto text-lg">Decentralized infrastructure powering EV charging, energy rewards, and tokenized ownership across the globe.</p>
</div>
<!-- Feature Grid -->
<div class="grid gap-10 grid-cols-1 sm:grid-cols-2 md:grid-cols-4 max-w-6xl mx-auto">
<!-- Feature 1 -->
<div class="flex flex-col items-center text-center px-4">
<img src="https://sales.decharge.network/assets/marketing/1.svg" alt="Energy Node" class="h-24 mb-4">
<h3 class="text-xl font-semibold mb-2">Energy Nodes</h3>
<p class="text-gray-400 text-sm">Community-powered infrastructure that distributes and monetizes clean energy.</p>
</div>
<!-- Feature 2 -->
<div class="flex flex-col items-center text-center px-4">
<img src="https://sales.decharge.network/assets/marketing/2.svg" alt="EV Charging" class="h-24 mb-4">
<h3 class="text-xl font-semibold mb-2">EV Charging</h3>
<p class="text-gray-400 text-sm">Seamless charging at lightning speed, powered by token incentives and decentralized access.</p>
</div>
<!-- Feature 3 -->
<div class="flex flex-col items-center text-center px-4">
<img src="https://sales.decharge.network/assets/marketing/3.svg" alt="DeCharge Token" class="h-24 mb-4">
<h3 class="text-xl font-semibold mb-2">DeCharge Token</h3>
<p class="text-gray-400 text-sm">Fuel the ecosystem with DeCharge tokens — earn, spend, and stake securely.</p>
</div>
<!-- Feature 4 -->
<div class="flex flex-col items-center text-center px-4">
<img src="https://sales.decharge.network/assets/marketing/4.svg" alt="Rewards & Ownership" class="h-24 mb-4">
<h3 class="text-xl font-semibold mb-2">Rewards & Ownership</h3>
<p class="text-gray-400 text-sm">Be part of the grid. Own your energy future and get rewarded for participation.</p>
</div>
</div>
</section>
<!-- Visual CTA Section -->
<section class="py-20 px-6 bg-black text-white">
<div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<!-- Text Content -->
<div>
<h2 class="text-4xl md:text-5xl font-bold mb-4 text-neon-green">Powering the Future, Today</h2>
<p class="text-lg text-gray-300 mb-6">
DeCharge merges green energy and blockchain to deliver the most efficient, user-owned EV ecosystem ever built.
</p>
<a href="#get-started" class="bg-gradient-to-r from-electric-blue to-neon-green text-black px-6 py-3 font-semibold rounded-full shadow hover:scale-105 transition">Join the Revolution</a>
</div>
<!-- Image -->
<div class="relative">
<img src="https://res.cloudinary.com/djh1zkn3l/image/upload/v1746462754/decharge_f90aha.jpg" alt="DeCharge Tech"
class="rounded-3xl shadow-lg hover:scale-105 transition duration-700">
<div class="absolute inset-0 bg-gradient-to-tr from-black/50 to-transparent rounded-3xl pointer-events-none"></div>
</div>
</div>
</section>
<!-- CTA Button -->
<div class=" bg-black text-center pt-20">
<a href="#whitepaper" class="inline-block bg-gradient-to-r from-green-400 to-blue-500 text-white font-semibold py-3 px-6 rounded-full shadow-md hover:shadow-xl transition">
Explore Technical Whitepaper
</a>
</div>
</div>
<section id="community" class=" py-40 px-4 bg-black">
<div class="max-w-5xl mx-auto text-center">
<h2 class="text-4xl font-bold mb-2 text-cyan-400">Community & Partners</h2>
<p class="text-white mb-12">Join our growing ecosystem of supporters and collaborators</p>
<!-- Community Avatars -->
<div>
<h3 class="text-xl font-semibold text-white mb-6">Our Community</h3>
<div class="flex flex-wrap justify-center gap-4 mb-12">
<!-- Repeat these avatars -->
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">JD</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">KL</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">MN</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">OP</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">QR</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">ST</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">UV</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">WX</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">YZ</div>
<div class="w-14 h-14 rounded-full bg-gradient-to-br from-green-400 to-blue-500 text-white font-bold flex items-center justify-center shadow-md hover:scale-105 transition">+</div>
</div>
</div>
<!-- Partner Logos -->
<div>
<h3 class="text-xl font-semibold text-white mb-6 ">Our Partners</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 justify-items-center">
<div class="bg-white shadow-lg rounded-xl px-6 py-4 text-center text-teal-600 font-semibold text-lg hover:scale-105 transition">
Solana<span class="text-blue-400">Labs</span>
</div>
<div class="bg-white shadow-lg rounded-xl px-6 py-4 text-center text-green-600 font-semibold text-lg hover:scale-105 transition">
GreenTech
</div>
<div class="bg-white shadow-lg rounded-xl px-6 py-4 text-center text-cyan-600 font-semibold text-lg hover:scale-105 transition">
EcoChain
</div>
<div class="bg-white shadow-lg rounded-xl px-6 py-4 text-center text-sky-600 font-semibold text-lg hover:scale-105 transition">
Power<span class="text-cyan-500">DAO</span>
</div>
</div>
</div>
</div>
</section>
<!-- Alpine.js CDN -->
<script src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
<section id="faq" class=" py-20 px-4 bg-gray-900 backdrop-blur-md text-white">
<div class="max-w-4xl mx-auto">
<h2 class="text-4xl font-bold text-center mb-2 text-cyan-400">Frequently Asked Questions</h2>
<p class="text-center text-white mb-12">Everything you need to know about DeCharge</p>
<div class="space-y-4">
<!-- FAQ Item -->
<div x-data="{ open: true }" class="bg-white shadow rounded-md p-5">
<button @click="open = !open" class="flex justify-between items-center w-full text-left font-semibold text-gray-900">
What is DeCharge?
<svg :class="{'rotate-180': open}" class="w-5 h-5 transform transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>
</button>
<div x-show="open" x-transition class="mt-3 text-gray-700">
DeCharge is a decentralized protocol built on Solana that connects clean energy production with blockchain technology. It allows for the tokenization of energy production, creating a transparent and efficient marketplace for sustainable energy.
</div>
</div>
<div x-data="{ open: false }" class="bg-white shadow rounded-md p-5">
<button @click="open = !open" class="flex justify-between items-center w-full text-left font-semibold text-gray-900">
How do Smart Grid Nodes work?
<svg :class="{'rotate-180': open}" class="w-5 h-5 transform transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>
</button>
<div x-show="open" x-transition class="mt-3 text-gray-700">
Smart Grid Nodes are specialized hardware devices that connect to renewable energy sources and validate energy production on the blockchain. They use secure oracle technology to ensure accurate reporting and tokenization of energy output.
</div>
</div>
<div x-data="{ open: false }" class="bg-white shadow rounded-md p-5">
<button @click="open = !open" class="flex justify-between items-center w-full text-left font-semibold text-gray-900">
What makes DeCharge sustainable?
<svg :class="{'rotate-180': open}" class="w-5 h-5 transform transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>
</button>
<div x-show="open" x-transition class="mt-3 text-gray-700">
DeCharge is built on Solana, one of the most energy-efficient blockchains. Additionally, our protocol incentivizes renewable energy production by creating a direct economic link between clean energy generation and token value. A portion of all transaction fees is also allocated to carbon offset initiatives.
</div>
</div>
<div x-data="{ open: false }" class="bg-white shadow rounded-md p-5">
<button @click="open = !open" class="flex justify-between items-center w-full text-left font-semibold text-gray-900">
How can I participate in the ecosystem?
<svg :class="{'rotate-180': open}" class="w-5 h-5 transform transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>
</button>
<div x-show="open" x-transition class="mt-3 text-gray-700">
There are multiple ways to participate: become a token holder through our upcoming token sale, join our staking program to earn rewards, become a node operator if you have access to renewable energy sources, or contribute to governance by voting on protocol proposals.
</div>
</div>
<div x-data="{ open: false }" class="bg-white shadow rounded-md p-5">
<button @click="open = !open" class="flex justify-between items-center w-full text-left font-semibold text-gray-900">
Has the smart contract been audited?
<svg :class="{'rotate-180': open}" class="w-5 h-5 transform transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>
</button>
<div x-show="open" x-transition class="mt-3 text-gray-700">
Yes, our smart contracts have been audited by leading blockchain security firms. The full audit reports are available on our GitHub repository, and we maintain an ongoing bug bounty program.
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="bg-gradient-to-br from-teal-700 to-green-700 text-white py-16 px-4">
<div class="max-w-6xl mx-auto text-center">
<!-- Newsletter -->
<h2 class="text-3xl md:text-4xl font-bold mb-2">Stay Connected</h2>
<p class="text-gray-200 mb-6">Join our newsletter to receive the latest updates and announcements</p>
<form class="flex flex-col sm:flex-row justify-center items-center gap-4 mb-12">
<input
type="email"
placeholder="Your email address"
class="rounded-full px-6 py-3 w-full sm:w-96 text-gray-700 focus:outline-none"
/>
<button
type="submit"
class="rounded-full bg-gradient-to-r from-green-400 to-blue-500 text-white font-semibold px-8 py-3 transition hover:opacity-90"
>
Subscribe
</button>
</form>
<!-- Bottom Section -->
<div class="flex flex-col md:flex-row md:justify-between items-center border-t border-white/20 pt-8 space-y-6 md:space-y-0">
<!-- Left: Logo and Text -->
<div class="text-center md:text-left">
<div class="flex items-center justify-center md:justify-start gap-2 mb-1">
<span class="text-xl">⚡</span>
<span class="text-xl font-semibold">DeCharge</span>
</div>
<p class="text-gray-200 text-sm">Powering the future of energy on-chain</p>
</div>
<!-- Center: Social Icons -->
<div class="flex items-center gap-6 text-white text-xl">
<a href="#" aria-label="Twitter" class="hover:text-gray-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" aria-label="Discord" class="hover:text-gray-300">
<i class="fab fa-discord"></i>
</a>
<a href="#" aria-label="Medium" class="hover:text-gray-300">
<i class="fab fa-medium-m"></i>
</a>
<a href="#" aria-label="GitHub" class="hover:text-gray-300">
<i class="fab fa-github"></i>
</a>
</div>
<!-- Right: Links -->
<div class="flex gap-6 text-sm text-gray-300">
<a href="#" class="hover:underline">Privacy Policy</a>
<a href="#" class="hover:underline">Terms of Service</a>
<a href="#" class="hover:underline">Connect Wallet</a>
</div>
</div>
<!-- Copyright -->
<p class="text-xs text-gray-400 mt-8">© 2023 DeCharge Protocol. All rights reserved.</p>
</div>
</footer>
<!-- Font Awesome for icons (include in <head>) -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>