-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
548 lines (506 loc) · 27.8 KB
/
index.html
File metadata and controls
548 lines (506 loc) · 27.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
```<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AirdropFinder | Web3 Airdrop Checker</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
neon: {
blue: '#00f2ff',
purple: '#a200ff',
cyan: '#00ffea',
},
dark: {
bg: '#0a0a1a',
card: '#1a1a2e',
}
},
animation: {
'pulse-slow': 'pulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
}
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #0a0a1a;
color: white;
}
.orbitron {
font-family: 'Orbitron', sans-serif;
}
.neon-glow {
text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}
.gradient-text {
background: linear-gradient(90deg, #00f2ff, #a200ff, #00ffea);
background-size: 200% auto;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: gradient 3s linear infinite;
}
@keyframes gradient {
0% { background-position: 0% center; }
100% { background-position: 200% center; }
}
.blockchain-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.1) 0%, transparent 20%),
radial-gradient(circle at 90% 80%, rgba(162, 0, 255, 0.1) 0%, transparent 20%);
overflow: hidden;
z-index: -1;
}
.blockchain-bg::before, .blockchain-bg::after {
content: '';
position: absolute;
border-radius: 50%;
animation: pulse-slow 6s infinite;
}
.blockchain-bg::before {
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(0, 242, 255, 0.2) 0%, transparent 70%);
top: 10%;
left: 10%;
}
.blockchain-bg::after {
width: 200px;
height: 200px;
background: radial-gradient(circle, rgba(162, 0, 255, 0.2) 0%, transparent 70%);
bottom: 15%;
right: 10%;
animation-delay: 1s;
}
.node {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(0, 242, 255, 0.5);
animation: float 6s ease-in-out infinite;
}
.node::after {
content: '';
position: absolute;
width: 30px;
height: 30px;
border: 1px solid rgba(0, 242, 255, 0.2);
border-radius: 50%;
top: -10px;
left: -10px;
}
.feature-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(0, 242, 255, 0.1);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 242, 255, 0.1);
border-color: rgba(0, 242, 255, 0.3);
}
.cta-button {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.cta-button:hover::before {
left: 100%;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
}
.stats-grid {
background: rgba(26, 26, 46, 0.5);
border-radius: 10px;
border: 1px solid rgba(0, 242, 255, 0.1);
}
.stat-item {
position: relative;
padding-left: 30px;
}
.stat-item::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 2px;
background: linear-gradient(90deg, #00f2ff, #a200ff);
}
@media (max-width: 768px) {
.responsive-padding {
padding-left: 1rem;
padding-right: 1rem;
}
}
</style>
</head>
<body class="overflow-x-hidden">
<div class="blockchain-bg"></div>
<!-- Navigation -->
<nav class="container mx-auto pt-6 responsive-padding">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-8 h-8 rounded-full bg-gradient-to-r from-neon-blue to-neon-purple p-0.5">
<div class="w-full h-full rounded-full bg-dark-bg"></div>
</div>
<span class="orbitron text-xl font-bold gradient-text">AIRDROPFINDER</span>
</div>
<button class="md:hidden text-neon-blue focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-white hover:text-neon-blue transition-colors">Features</a>
<a href="#" class="text-white hover:text-neon-blue transition-colors">How It Works</a>
<a href="#" class="text-white hover:text-neon-blue transition-colors">Testimonials</a>
<a href="#" class="text-white hover:text-neon-blue transition-colors">Blog</a>
</div>
<div class="hidden md:block">
<button class="cta-button bg-neon-purple/20 border border-neon-purple/50 text-neon-purple px-6 py-2 rounded-full hover:bg-neon-purple/30 hover:text-white transition-all">
Connect Wallet
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="container mx-auto pt-20 pb-32 responsive-padding relative">
<div class="max-w-3xl mx-auto text-center">
<h1 class="orbitron text-5xl md:text-6xl font-bold mb-6 gradient-text">
Find Every Hidden Web3 Airdrop Instantly
</h1>
<p class="text-xl text-gray-400 mb-10 max-w-2xl mx-auto">
Connect your wallet, scan for live airdrops, and never miss free crypto again.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="cta-button bg-gradient-to-r from-neon-blue to-neon-purple text-white px-8 py-4 rounded-full font-bold text-lg hover:from-neon-blue hover:to-neon-purple hover:opacity-90 transition-all">
Free Scan Now
</button>
<button class="cta-button bg-dark-card border border-neon-blue text-neon-blue px-8 py-4 rounded-full font-bold text-lg hover:bg-neon-blue/10 transition-all">
Join Telegram Alerts
</button>
</div>
</div>
<!-- Animated blockchain nodes -->
<div class="node" style="top: 20%; left: 10%; width: 15px; height: 15px;"></div>
<div class="node" style="top: 60%; left: 80%; width: 20px; height: 20px; background: rgba(162, 0, 255, 0.5); animation-delay: 1s;"></div>
<div class="node" style="top: 40%; left: 30%; width: 10px; height: 10px; background: rgba(0, 255, 234, 0.5); animation-delay: 2s;"></div>
<div class="node" style="top: 80%; left: 20%; width: 12px; height: 12px; animation-delay: 3s;"></div>
<div class="node" style="top: 30%; left: 70%; width: 18px; height: 18px; background: rgba(162, 0, 255, 0.5); animation-delay: 4s;"></div>
</section>
<!-- How It Works -->
<section class="py-20 bg-dark-card/50 responsive-padding">
<div class="container mx-auto">
<h2 class="orbitron text-4xl font-bold text-center mb-16 gradient-text">How It Works</h2>
<div class="max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-center mb-12">
<div class="md:w-1/3 flex justify-center mb-8 md:mb-0">
<div class="w-24 h-24 rounded-full bg-gradient-to-r from-neon-blue to-neon-purple flex items-center justify-center text-3xl font-bold">
1
</div>
</div>
<div class="md:w-2/3">
<h3 class="text-2xl font-bold mb-4">Connect Your Wallet</h3>
<p class="text-gray-400">
Securely connect your Web3 wallet with a single click. We support all major wallets including MetaMask, Trust Wallet, Phantom, and more.
</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-center mb-12">
<div class="md:w-1/3 flex justify-center mb-8 md:mb-0 order-1 md:order-none">
<div class="w-24 h-24 rounded-full bg-gradient-to-r from-neon-purple to-neon-cyan flex items-center justify-center text-3xl font-bold">
2
</div>
</div>
<div class="md:w-2/3">
<h3 class="text-2xl font-bold mb-4">AI Scans Verified Sources</h3>
<p class="text-gray-400">
Our advanced AI scans thousands of verified airdrop sources across multiple blockchains to find opportunities you're eligible for.
</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 flex justify-center mb-8 md:mb-0">
<div class="w-24 h-24 rounded-full bg-gradient-to-r from-neon-cyan to-neon-blue flex items-center justify-center text-3xl font-bold">
3
</div>
</div>
<div class="md:w-2/3">
<h3 class="text-2xl font-bold mb-4">Instantly See Eligible Rewards</h3>
<p class="text-gray-400">
Get a comprehensive list of all airdrops you qualify for, with estimated values and simple one-click claim instructions.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 responsive-padding">
<div class="container mx-auto">
<h2 class="orbitron text-4xl font-bold text-center mb-16 gradient-text">Powerful Features</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="feature-card bg-dark-card p-8 rounded-xl hover:bg-dark-card/80 transition-all">
<div class="w-16 h-16 mb-6 flex items-center justify-center rounded-full bg-gradient-to-r from-neon-blue to-neon-purple">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z"></path>
</svg>
</div>
<h3 class="text-xl font-bold mb-3">Real-time Wallet Scanner</h3>
<p class="text-gray-400">
Continuously monitors your wallet activity to identify new airdrop opportunities as they become available.
</p>
</div>
<div class="feature-card bg-dark-card p-8 rounded-xl hover:bg-dark-card/80 transition-all">
<div class="w-16 h-16 mb-6 flex items-center justify-center rounded-full bg-gradient-to-r from-neon-purple to-neon-cyan">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"></path>
</svg>
</div>
<h3 class="text-xl font-bold mb-3">Privacy-First</h3>
<p class="text-gray-400">
Your private keys never leave your wallet. We only access public blockchain data to find your airdrops.
</p>
</div>
<div class="feature-card bg-dark-card p-8 rounded-xl hover:bg-dark-card/80 transition-all">
<div class="w-16 h-16 mb-6 flex items-center justify-center rounded-full bg-gradient-to-r from-neon-cyan to-neon-blue">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9"></path>
</svg>
</div>
<h3 class="text-xl font-bold mb-3">Custom Alerts</h3>
<p class="text-gray-400">
Get instant notifications via Telegram or email when new airdrops matching your profile are detected.
</p>
</div>
<div class="feature-card bg-dark-card p-8 rounded-xl hover:bg-dark-card/80 transition-all">
<div class="w-16 h-16 mb-6 flex items-center justify-center rounded-full bg-gradient-to-r from-neon-blue to-neon-purple">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path>
</svg>
</div>
<h3 class="text-xl font-bold mb-3">Multi-chain Support</h3>
<p class="text-gray-400">
We scan airdrops across Ethereum, Solana, Polygon, Base, and other major blockchains in one place.
</p>
</div>
</div>
</div>
</section>
<!-- Testimonials / Stats -->
<section class="py-20 bg-dark-card/50 responsive-padding">
<div class="container mx-auto">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h2 class="orbitron text-4xl font-bold mb-6 gradient-text">Trusted by Crypto Enthusiasts</h2>
<p class="text-gray-400 mb-8">
Join thousands of smart crypto investors who use AirdropFinder to maximize their airdrop earnings with minimal effort.
</p>
<div class="stats-grid p-8 rounded-xl">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6">
<div class="stat-item mb-6">
<h3 class="text-3xl font-bold gradient-text mb-2">10,000+</h3>
<p class="text-gray-400">Active Users</p>
</div>
<div class="stat-item mb-6">
<h3 class="text-3xl font-bold gradient-text mb-2">$2M+</h3>
<p class="text-gray-400">Airdrops Tracked</p>
</div>
<div class="stat-item mb-6">
<h3 class="text-3xl font-bold gradient-text mb-2">15+</h3>
<p class="text-gray-400">Supported Chains</p>
</div>
<div class="stat-item">
<h3 class="text-3xl font-bold gradient-text mb-2">24/7</h3>
<p class="text-gray-400">Real-time Monitoring</p>
</div>
</div>
</div>
</div>
<div class="bg-dark-card p-8 rounded-xl h-full">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-16 h-16 rounded-full mr-4 object-cover">
<div>
<h4 class="font-bold text-lg">Sarah K.</h4>
<p class="text-gray-400">Crypto Investor</p>
</div>
</div>
<p class="text-gray-300 italic mb-6">
"AirdropFinder has completely changed my crypto game. I've found over $12,000 in airdrops I would have completely missed otherwise. The Telegram alerts are a game-changer!"
</p>
<div class="flex">
<div class="w-3 h-3 rounded-full bg-neon-blue mr-2"></div>
<div class="w-3 h-3 rounded-full bg-gray-600 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-gray-600"></div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Footer -->
<section class="py-20 responsive-padding bg-gradient-to-r from-dark-bg to-dark-card">
<div class="container mx-auto text-center">
<h2 class="orbitron text-4xl md:text-5xl font-bold mb-8 gradient-text">
Stop Missing Free Crypto
</h2>
<p class="text-xl text-gray-400 mb-10 max-w-2xl mx-auto">
Join thousands of smart investors who are claiming their fair share of Web3 airdrops every day.
</p>
<button class="cta-button bg-gradient-to-r from-neon-blue to-neon-purple text-white px-10 py-5 rounded-full font-bold text-xl hover:from-neon-blue hover:to-neon-purple hover:opacity-90 transition-all transform hover:scale-105">
Scan My Wallet Now
</button>
</div>
</section>
<!-- Footer -->
<footer class="py-12 responsive-padding border-t border-neon-blue/20">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center mb-8">
<div class="flex items-center space-x-2 mb-8 md:mb-0">
<div class="w-8 h-8 rounded-full bg-gradient-to-r from-neon-blue to-neon-purple p-0.5">
<div class="w-full h-full rounded-full bg-dark-bg"></div>
</div>
<span class="orbitron text-xl font-bold gradient-text">AIRDROPFINDER</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-neon-blue transition-colors">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd" d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.879-.047-.588-.246-1.503.111-2.462.29-.77.847-1.508 2.133-1.508 1.27 0 2.007.736 2.121 1.508.264.959 1.23 1.52 2.462 1.561C20.343 21.128 24 16.991 24 12z" clip-rule="evenodd"></path>
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-neon-blue transition-colors">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 8.343 8.343 0 005.938 1.638c-2.347.508-4.958.793-7.698.793-7.402 0-11.675-6.253-11.675-11.675 0-.178 0-.355-.012-.53 1.78-6.282 11.14-11.675 11.14-11.675-.358.646-.678 1.358-.678 2.059 0 1.51.956 2.725 2.358 3.088-.227-.087-.46-.155-.7-.155-2.22 0-4.055 1.823-4.055 4.05 0 .34.038.675.087 1.002.677-1.42 1.541-1.88 2.578-1.88 3.61 0 1.03.86 1.88 2.578 1.88 1.42 0 2.725-.678 3.402-1.545.047-.325.087-.652.087-1 0-1.16-.064-2.308-.188-3.402-.188-1.09 0-2.138.064-3.15.188.3.126.62.227.95.227.677 0 1.358-.358 2.059-.678.178 0 .355-.012.53-.012.53h-.002z"></path>
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-neon-blue transition-colors">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12.338 2.022c-3.08 0-5.582 2.455-5.582 5.477 0 2.74 1.993 4.965 4.664 5.578-.71.04-1.43-.05-2.09-.27v.01c0 2.21 1.705 4.07 3.786 4.34.62-.08 1.25-.12 1.88-.12 1.08 0 2.13.16 3.1.46.62-.32 1.47-.8 2.45-1.49-1.03-.2-2.11-.66-2.86-1.22.65-.27 1.34-.66 2.05-1.17-1.1-.28-2.25-.8-3.18-1.43.86-.3 1.77-.47 2.67-.47 3.53 0 6.42-2.835 6.42-6.35 0-3.067-2.5-5.582-5.58-5.582z"></path>
</svg>
</a>
</div>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center text-gray-400">
<div>
<h3 class="font-bold mb-4">Product</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-neon-blue transition-colors">Features</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Pricing</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">How It Works</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Supported Wallets</a></li>
</ul>
</div>
<div>
<h3 class="font-bold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-neon-blue transition-colors">Blog</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Guides</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Airdrop Database</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">FAQ</a></li>
</ul>
</div>
<div>
<h3 class="font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-neon-blue transition-colors">About</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Team</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Careers</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Contact</a></li>
</ul>
</div>
<div>
<h3 class="font-bold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-neon-blue transition-colors">Privacy</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Terms</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Security</a></li>
<li><a href="#" class="hover:text-neon-blue transition-colors">Disclaimer</a></li>
</ul>
</div>
</div>
<div class="border-t border-neon-blue/20 mt-12 pt-8 text-center text-gray-500">
<p>© 2023 AirdropFinder. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Add more interactive nodes
document.addEventListener('DOMContentLoaded', function() {
const blockchainBg = document.querySelector('.blockchain-bg');
// Create additional animated nodes
for (let i = 0; i < 15; i++) {
const node = document.createElement('div');
node.className = 'node';
// Random position and size
const size = Math.random() * 15 + 5;
node.style.width = `${size}px`;
node.style.height = `${size}px`;
node.style.top = `${Math.random() * 100}%`;
node.style.left = `${Math.random() * 100}%`;
node.style.animationDelay = `${Math.random() * 5}s`;
// Random color between neon-blue and neon-purple
const hue = Math.random() * (270 - 210) + 210;
node.style.background = `hsla(${hue}, 100%, 50%, 0.5)`;
blockchainBg.appendChild(node);
}
// Add smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add animation to feature cards when they come into view
const featureCards = document.querySelectorAll('.feature-card');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
featureCards.forEach(card => {
card.style.opacity = '0';
card.style.transform = 'translateY(20px)';
card.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(card);
});
});
</script>
</body>
</html>```