forked from sampadatiwari30/Code_Creations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
700 lines (677 loc) Β· 27.5 KB
/
Copy pathproject.html
File metadata and controls
700 lines (677 loc) Β· 27.5 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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projects β Sampada Tiwari</title>
<script src="https://cdn.tailwindcss.com"></script>
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="css/project.css" />
</head>
<body>
<!-- Navbar -->
<header class="fixed top-0 left-0 w-full bg-[#0f172a]/80 backdrop-blur-md z-50">
<div class="max-w-7xl mx-auto flex items-center justify-between px-6 py-4">
<!-- Brand / Logo -->
<h1 class="text-2xl font-bold text-white">
Sampada <span class="text-cyan-400">Tiwari</span>
</h1>
<!-- Desktop Navigation -->
<nav class="hidden md:flex items-center space-x-6 font-medium">
<a href="#hero" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="experience.html" class="nav-link">Experience</a>
<a href="project.html" class="nav-link">Projects</a>
<a href="#testimonials" class="nav-link">Testimonials</a>
<a href="contact.html" class="nav-link">Contact</a>
<!-- Theme Toggle -->
<button id="theme-toggle" class="ml-4 text-white hover:text-cyan-400 transition">
<i id="theme-toggle-icon" class="fas fa-moon text-xl"></i>
</button>
</nav>
<!-- Mobile Menu Button -->
<button id="menu-btn" class="md:hidden text-white focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-[#0f172a]/95 backdrop-blur-md">
<nav class="flex flex-col px-6 py-4 space-y-4 font-medium">
<a href="#hero" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="skills.html" class="nav-link">Skills</a>
<a href="experience.html" class="nav-link">Experience</a>
<a href="project.html" class="nav-link">Projects</a>
<a href="#testimonials" class="nav-link">Testimonials</a>
<a href="contact.html" class="nav-link">Contact</a>
</nav>
</div>
</header>
<!-- Tailwind Nav Link Styling -->
<style>
.nav-link {
@apply relative text-white transition duration-300;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background-color: #22d3ee; /* cyan-400 */
transition: width 0.3s ease;
}
.nav-link:hover {
color: #22d3ee; /* cyan-400 */
}
.nav-link:hover::after {
width: 100%;
}
</style>
<section class="py-20 text-center" style="margin-top: 4rem">
<h1 class="text-5xl md:text-6xl font-extrabold gradient-text mb-4">
Projects
</h1>
<p class="text-gray-400 max-w-xl mx-auto text-lg">
Modern interactive showcase with hover animations, gradients, and
detailed content below each project.
</p>
</section>
<!-- Projects Grid -->
<div
class="projects-grid grid gap-8 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3 px-6"
>
<!-- Real Estate Platform -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=800&q=80"
alt="Real Estate Platform"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
Real Estate Platform
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Virtual real estate marketplace in metaverse environments with 3D
visualization and virtual tours.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Unity, Three.js, Web3.js</p>
<p>
<strong>Key Features:</strong> 3D visualization, Virtual tours,
Integrated payments
</p>
<p><strong>Role:</strong> Full Stack Developer</p>
<p>
<strong>Outcome:</strong> Immersive virtual real estate platform
</p>
</div>
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="#"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- ΰ€ΰ€²ΰ€Ύ.ficial -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="./images/kala.ficial.png"
alt="ΰ€ΰ€²ΰ€Ύ.ficial"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
ΰ€ΰ€²ΰ€Ύ.ficial
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Virtual art exhibition platform with modern UI, fluid animations,
and real-time global notifications.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p>
<strong>Technologies:</strong> HTML, CSS, JavaScript, Leaflet.js
</p>
<p>
<strong>Key Features:</strong> Virtual exhibition, Real-time
notifications
</p>
<p><strong>Role:</strong> Frontend Developer</p>
<p><strong>Outcome:</strong> Engaging virtual art platform</p>
</div>
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="https://example.com/kala-ficial"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- NASA Space Challenge -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://sites.uwasa.fi/vaasaspaceavenue/wp-content/blogs.dir/4/files/sites/188/2025/07/nasa-space-apps-kuva-jollaan-1080x500.png"
alt="NASA Space Challenge"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
NASA Space Challenge (Hack Celestia)
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Collaborative task manager for exploring planetary data and solar
system exploration during NASA Space Apps Challenge.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> React, Node.js, APIs</p>
<p>
<strong>Key Features:</strong> Collaborative data management,
Planetary exploration
</p>
<p><strong>Role:</strong> Full Stack Developer</p>
<p>
<strong>Outcome:</strong> Efficient task management for NASA
challenge
</p>
</div>
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="https://example.com/nasa-hack"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- DeshDarshan -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="./images/desh-darshan.png"
alt="DeshDarshan"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
DeshDarshan (Ongoing)
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Platform showcasing Indiaβs heritage, festivals, food, art, and
famous places for immersive exploration across all states.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> React, Tailwind CSS, APIs</p>
<p>
<strong>Key Features:</strong> Cultural exploration, State-wise
content
</p>
<p><strong>Role:</strong> Frontend Developer</p>
<p>
<strong>Outcome:</strong> Interactive cultural discovery platform
</p>
</div>
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="https://example.com/deshdarshan"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- Project Card -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<!-- Image with overlay -->
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://griddb-pro-ewemahawekgyd8bs.a03.azurefd.net/en/wp-content/uploads/2021/11/email-spam-1160x650.png"
alt="spam-mail-classification"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<!-- Content -->
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
spam-mail-classification
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Automated email classifier using NLP techniques for real-time spam
detection...
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Python, NLP, scikit-learn</p>
<p>
<strong>Key Features:</strong> Real-time spam detection, learning
model
</p>
<p><strong>Role:</strong> Developer & Designer</p>
<p>
<strong>Outcome:</strong> Scalable email classification system
</p>
</div>
<!-- Links -->
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="#"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- DeFi Trading Platform Card -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://www.solulab.com/wp-content/uploads/2023/08/Best-Defi-Trading-Platforms.jpg"
alt="DeFi Trading Platform"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
DeFi Trading Platform
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Decentralized finance platform for trading, staking, and liquidity
across multiple blockchains...
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Solidity, React, Web3.js</p>
<p>
<strong>Key Features:</strong> Multi-chain trading, staking,
analytics
</p>
<p><strong>Role:</strong> Full Stack Developer</p>
<p>
<strong>Outcome:</strong> DeFi platform with automated strategies
</p>
</div>
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="#"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- Contract Auditing Tool -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://101blockchains.com/wp-content/uploads/2023/12/top-smart-contracts-auditing-tools.png"
alt="Contract Auditing Tool"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
Contract Auditing Tool
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Automated smart contract auditing platform identifying
vulnerabilities and optimizing gas usage.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Solidity, Hardhat, Ethers.js</p>
<p>
<strong>Key Features:</strong> Security auditing, Gas
optimization, Compliance check
</p>
<p><strong>Role:</strong> Smart Contract Developer</p>
<p><strong>Outcome:</strong> Safer and optimized contracts</p>
</div>
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="#"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- HearMe Platform -->
<div
class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl"
>
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://i.ytimg.com/vi/crAHR64_C48/maxresdefault.jpg"
alt="HearMe Platform"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div
class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"
></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3
class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400"
>
HearMe Platform
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Responsive e-commerce platform for the deaf and mute community,
designed with accessibility and intuitive navigation.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p>
<strong>Technologies:</strong> React, Tailwind CSS, Accessibility
API
</p>
<p>
<strong>Key Features:</strong> Accessibility-focused, Intuitive
navigation
</p>
<p><strong>Role:</strong> Frontend Developer</p>
<p><strong>Outcome:</strong> Inclusive e-commerce platform</p>
</div>
<div class="mt-4 flex gap-4">
<a
href="#"
target="_blank"
class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="https://example.com/hearme"
target="_blank"
class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors"
><i class="fas fa-external-link-alt"></i> Live Demo</a
>
</div>
<!-- Comment Section -->
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
</div>
<!-- ================= FOOTER SECTION ================= -->
<footer
class="bg-gradient-to-br from-gray-900 to-gray-800 text-gray-200 py-16 px-6 md:px-12"
style="margin-top: 4rem"
>
<!-- Footer Container -->
<div
class="flex flex-col md:flex-row md:justify-between gap-12 md:gap-8 mb-8"
>
<!-- Brand / Logo -->
<div class="text-center md:text-left">
<h2
class="text-2xl md:text-3xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-purple-500"
>
Sampada<span class="font-extrabold">Tiwari</span>
</h2>
<p class="text-gray-400 mt-1 text-sm md:text-base">
Data Scientist β’ Leader β’ Creator
</p>
</div>
<!-- Quick Links -->
<div class="text-center md:text-left">
<h3 class="text-cyan-400 text-lg font-semibold mb-3">Quick Links</h3>
<ul
class="flex flex-wrap justify-center md:justify-start gap-3 md:gap-2"
>
<li>
<a href="index.html" class="hover:text-cyan-400 transition-colors"
>Home</a
>
<li>
<a href="#about" class="hover:text-cyan-400 transition-colors"
>About</a
>
</li>
<li>
<a href="#skills" class="hover:text-cyan-400 transition-colors"
>Skills</a
>
</li>
<li>
<a
href="#experience"
class="hover:text-cyan-400 transition-colors"
>Experience</a
>
</li>
<li>
<a href="#projects" class="hover:text-cyan-400 transition-colors"
>Projects</a
>
</li>
<li>
<a
href="#testimonials"
class="hover:text-cyan-400 transition-colors"
>Testimonials</a
>
</li>
<li>
<a href="#contact" class="hover:text-cyan-400 transition-colors"
>Contact</a
>
</li>
</ul>
</div>
<!-- Social Media -->
<div class="text-center md:text-left">
<h3 class="text-cyan-400 text-lg font-semibold mb-3">Follow Me</h3>
<div class="flex justify-center md:justify-start gap-4 text-2xl">
<a
href="https://linkedin.com/in/sampada"
target="_blank"
class="hover:text-cyan-400 transform hover:scale-125 transition-all"
><i class="fab fa-linkedin"></i
></a>
<a
href="https://github.com/sampada"
target="_blank"
class="hover:text-cyan-400 transform hover:scale-125 transition-all"
><i class="fab fa-github"></i
></a>
<a
href="https://twitter.com/sampada"
target="_blank"
class="hover:text-cyan-400 transform hover:scale-125 transition-all"
><i class="fab fa-twitter"></i
></a>
<a
href="mailto:sampada@example.com"
class="hover:text-cyan-400 transform hover:scale-125 transition-all"
><i class="fas fa-envelope"></i
></a>
</div>
</div>
</div>
<!-- Bottom Bar -->
<div
class="border-t border-gray-700 pt-4 text-center text-sm text-gray-500"
>
Β© 2025 Sampada Tiwari β’ All Rights Reserved
</div>
</footer>
<!-- Tailwind JS for Mobile Menu Toggle -->
<script src="js/project.js"></script>
</body>
</html>