forked from sampadatiwari30/Code_Creations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
521 lines (504 loc) Β· 19.8 KB
/
Copy pathexperience.html
File metadata and controls
521 lines (504 loc) Β· 19.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Experience | Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-tilt/1.8.0/vanilla-tilt.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="css/experience.css" />
</head>
<body class="font-sans">
<button class="theme-toggle" id="themeToggle">
<i class="fas fa-moon" id="theme-icon"></i>
</button>
<!-- 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>
<!-- Header -->
<header class="text-center py-10" style="margin-top: 6rem">
<h1
class="text-5xl font-extrabold text-transparent bg-clip-text bg-gradient-to-r from-pink-500 via-purple-500 to-indigo-500"
>
My Experience
</h1>
<p class="mt-4 text-gray-300 text-lg">
A timeline of my professional journey π
</p>
</header>
<!-- Timeline Section -->
<section class="relative max-w-5xl mx-auto px-6">
<div class="border-l-4 border-purple-500">
<!-- Example Timeline Card -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-purple-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2025
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-purple-500/40 hover:border-purple-400/70 transition-all transform hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-purple-400">
GirlScript Summer of Code
</h3>
<p class="text-gray-300">
Project Admin & Discord Moderator Β· Jul 2025 β Present
</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>Selected as Project Admin</li>
<li>Full-time Discord Moderator</li>
<li>
Managed projects, mentored contributors & coordinated events
</li>
</ul>
</div>
</div>
<!-- Gaming Network -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-pink-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-pink-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-pink-400">Gaming Network</h3>
<p class="text-gray-300">
Fellowship β City Lead Β· May 2024 β Present
</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>Represented Kratos in city-based esports initiatives</li>
<li>Managed partnerships, events & campaigns</li>
<li>Tracked outreach stats with Excel</li>
</ul>
</div>
</div>
<!-- Future Baba -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-red-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-red-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-red-400">Future Baba</h3>
<p class="text-gray-300">
Data Analytics & Data Science Intern Β· Apr 2025
</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>Used Python, Excel, Power BI for insights</li>
<li>Built interactive KPI dashboards</li>
<li>Contributed to modeling & reporting</li>
</ul>
</div>
</div>
<!-- Gaming Network -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-gray-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-gray-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-gray-400">Algorithm</h3>
<p class="text-gray-300">CCP Lead Β· Jun 2024 β May 2025</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>Led 50+ coders in DSA & CP</li>
<li>Hosted contests and mentoring sessions</li>
<li>Maintained community on GitHub/Discord</li>
</ul>
</div>
</div>
<!-- Gaming Network -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-cyan-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-cyan-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-cyan-400">
Palmolive (India) Ltd
</h3>
<p class="text-gray-300">Content Creator Β· May 2024</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>Created content aligned to brand voice</li>
<li>Supported marketing campaigns</li>
<li>Drove engagement via storytelling</li>
</ul>
</div>
</div>
<!-- Gaming Network -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-indigo-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-indigo-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-indigo-400">
GirlScript Summer of Code
</h3>
<p class="text-gray-300">
Mentor & Campus Ambassador Β· Sep β Nov 2024
</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>
Guided contributors, hosted sessions & secured
<span class="text-white font-bold">8th rank</span>.
</li>
</ul>
</div>
</div>
<!-- Gaming Network -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-teal-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-teal-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-teal-400">French Quiz</h3>
<p class="text-gray-300">Banasthali Vidyapith Β· Oct 2024</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>
Participated in "Le Grand Concours '24" in collaboration with
Uzbekistan State World Language University & French Embassy in
India.
</li>
</ul>
</div>
</div>
<!-- Gaming Network -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-orange-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-orange-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-orange-400">
Nasa Space Apps Challenge
</h3>
<p class="text-gray-300">Cusco Β· Remote Β· Oct 2024</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>
Built innovative solutions for planetary exploration during NASA
Hackathon.
</li>
</ul>
</div>
</div>
<!-- Gaming Network -->
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-blue-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-blue-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-blue-400">
Campus Ambassador
</h3>
<p class="text-gray-300">
Techkriti, IIT Kanpur Β· Sep 2023 β Apr 2024
</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>
Represented IIT Kanpurβs Techkriti Fest. Skills gained:
<span class="font-bold text-white"
>Team Management, Time Management</span
>.
</li>
</ul>
</div>
</div>
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-red-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-red-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-red-400">
Web Development Intern
</h3>
<p class="text-gray-300">CLUMOSS Β· Aug β Sep 2023</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>Worked remotely on frontend development projects.</li>
</ul>
</div>
</div>
<div class="relative mb-12 pl-10" data-tilt>
<div
class="absolute -left-5 top-2 w-10 h-10 rounded-full bg-indigo-500 glow-marker flex items-center justify-center text-xs font-bold"
>
2024
</div>
<div
class="glass rounded-3xl p-6 shadow-2xl border border-indigo-500/40 hover:border-pink-400/70 transition-all hover:scale-[1.03]"
>
<h3 class="text-2xl font-semibold text-indigo-400">
Tata Group Hackathon
</h3>
<p class="text-gray-300">Participant Β· May 2023</p>
<ul class="mt-3 text-gray-400 list-disc list-inside space-y-1">
<li>Contributed ideas & prototypes in Tata Group challenge.</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="max-w-6xl mx-auto px-6 py-20" id="testimonials">
<h2
class="text-4xl font-bold text-center text-transparent bg-clip-text bg-gradient-to-r from-green-400 to-blue-500 mb-14"
>
Testimonials
</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Card 1 -->
<div
class="glass p-8 rounded-3xl shadow-2xl border border-green-400/40 hover:border-green-400/70 transition transform hover:scale-[1.05]"
data-tilt
>
<div class="flex items-start gap-3">
<span class="text-green-400 text-3xl">β</span>
<p class="italic">
Community building efforts have been transformative, fostering
belonging and driving engagement. His passion shines through.
</p>
</div>
<p class="mt-5 font-semibold text-gray-300">
β Sandeep Jain, CEO GeeksforGeeks
</p>
</div>
<!-- Card 2 -->
<div
class="glass p-8 rounded-3xl shadow-2xl border border-blue-400/40 hover:border-blue-400/70 transition transform hover:scale-[1.05]"
data-tilt
>
<div class="flex items-start gap-3">
<span class="text-blue-400 text-3xl">β</span>
<p class="italic">
Ability to connect us with the right gaming influencers and
opportunities has been impressive. Helped us reach loyal
audiences.
</p>
</div>
<p class="mt-5 font-semibold text-gray-300">
β Abhishek Aggarwal, CEO Trinity Gaming
</p>
</div>
<!-- Card 3 -->
<div
class="glass p-8 rounded-3xl shadow-2xl border border-purple-400/40 hover:border-purple-400/70 transition transform hover:scale-[1.05]"
data-tilt
>
<div class="flex items-start gap-3">
<span class="text-purple-400 text-3xl">β</span>
<p class="italic">
Gaming sponsorship expertise has been a game-changer. Delivered
partnerships that boosted visibility in the gaming community.
</p>
</div>
<p class="mt-5 font-semibold text-gray-300">
β Manish Agarwal, CEO KGeN
</p>
</div>
</div>
</section>
<!-- ================= FOOTER SECTION ================= -->
<footer
class="bg-gradient-to-br from-gray-900 to-gray-800 text-gray-200 py-16 px-6 md:px-12"
>
<!-- 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.html" class="hover:text-cyan-400 transition-colors"
>About</a
>
</li>
<li>
<a
href="about.html#skills"
class="hover:text-cyan-400 transition-colors"
>Skills</a
>
</li>
<li>
<a
href="experience.html"
class="hover:text-cyan-400 transition-colors"
>Experience</a
>
</li>
<li>
<a
href="project.html"
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.html"
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>
<script src="js/experience.js"></script>
</body>
</html>