Update index.html
Browse files- index.html +236 -665
index.html
CHANGED
@@ -4,727 +4,298 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Aditya Singh Gaur - AI/ML Portfolio</title>
|
7 |
-
|
8 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
9 |
-
<!-- Google Fonts -->
|
10 |
-
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800&display=swap" rel="stylesheet">
|
11 |
<style>
|
12 |
-
:root {
|
13 |
-
--primary: #6c63ff;
|
14 |
-
--secondary: #4a44b5;
|
15 |
-
--dark: #1a1a2e;
|
16 |
-
--darker: #0f0c29;
|
17 |
-
--light: #f8f9fa;
|
18 |
-
--accent: #00dbde;
|
19 |
-
}
|
20 |
-
|
21 |
-
* {
|
22 |
-
margin: 0;
|
23 |
-
padding: 0;
|
24 |
-
box-sizing: border-box;
|
25 |
-
font-family: 'Poppins', sans-serif;
|
26 |
-
}
|
27 |
-
|
28 |
-
body {
|
29 |
-
background: linear-gradient(135deg, var(--darker), #302b63, #24243e);
|
30 |
-
color: var(--light);
|
31 |
-
min-height: 100vh;
|
32 |
-
line-height: 1.6;
|
33 |
-
}
|
34 |
-
|
35 |
.gradient-bg {
|
36 |
-
background: linear-gradient(135deg,
|
37 |
-
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
38 |
-
}
|
39 |
-
|
40 |
-
.container {
|
41 |
-
width: 100%;
|
42 |
-
max-width: 1200px;
|
43 |
-
margin: 0 auto;
|
44 |
-
padding: 0 20px;
|
45 |
-
}
|
46 |
-
|
47 |
-
header {
|
48 |
-
padding: 80px 0;
|
49 |
-
position: relative;
|
50 |
-
overflow: hidden;
|
51 |
-
}
|
52 |
-
|
53 |
-
header::before {
|
54 |
-
content: "";
|
55 |
-
position: absolute;
|
56 |
-
top: 0;
|
57 |
-
left: 0;
|
58 |
-
width: 100%;
|
59 |
-
height: 100%;
|
60 |
-
background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.2), transparent 70%);
|
61 |
-
pointer-events: none;
|
62 |
-
}
|
63 |
-
|
64 |
-
.flex {
|
65 |
-
display: flex;
|
66 |
-
}
|
67 |
-
|
68 |
-
.flex-col {
|
69 |
-
flex-direction: column;
|
70 |
-
}
|
71 |
-
|
72 |
-
.md\:flex-row {
|
73 |
-
flex-direction: column;
|
74 |
-
}
|
75 |
-
|
76 |
-
.items-center {
|
77 |
-
align-items: center;
|
78 |
-
}
|
79 |
-
|
80 |
-
.justify-between {
|
81 |
-
justify-content: space-between;
|
82 |
-
}
|
83 |
-
|
84 |
-
.mb-8 {
|
85 |
-
margin-bottom: 2rem;
|
86 |
-
}
|
87 |
-
|
88 |
-
.md\:mb-0 {
|
89 |
-
margin-bottom: 0;
|
90 |
-
}
|
91 |
-
|
92 |
-
.text-4xl {
|
93 |
-
font-size: 2.25rem;
|
94 |
-
font-family: 'Montserrat', sans-serif;
|
95 |
-
}
|
96 |
-
|
97 |
-
.md\:text-5xl {
|
98 |
-
font-size: 3rem;
|
99 |
-
}
|
100 |
-
|
101 |
-
.font-bold {
|
102 |
-
font-weight: 700;
|
103 |
-
}
|
104 |
-
|
105 |
-
.mb-2 {
|
106 |
-
margin-bottom: 0.5rem;
|
107 |
-
}
|
108 |
-
|
109 |
-
.text-xl {
|
110 |
-
font-size: 1.25rem;
|
111 |
-
}
|
112 |
-
|
113 |
-
.md\:text-2xl {
|
114 |
-
font-size: 1.5rem;
|
115 |
-
}
|
116 |
-
|
117 |
-
.opacity-90 {
|
118 |
-
opacity: 0.9;
|
119 |
-
}
|
120 |
-
|
121 |
-
.space-x-4 > * + * {
|
122 |
-
margin-left: 1rem;
|
123 |
-
}
|
124 |
-
|
125 |
-
.bg-white {
|
126 |
-
background-color: white;
|
127 |
-
}
|
128 |
-
|
129 |
-
.text-purple-700 {
|
130 |
-
color: #6c63ff;
|
131 |
-
}
|
132 |
-
|
133 |
-
.p-3 {
|
134 |
-
padding: 0.75rem;
|
135 |
-
}
|
136 |
-
|
137 |
-
.rounded-full {
|
138 |
-
border-radius: 9999px;
|
139 |
-
}
|
140 |
-
|
141 |
-
.hover\:bg-purple-100:hover {
|
142 |
-
background-color: #e0d7ff;
|
143 |
-
}
|
144 |
-
|
145 |
-
.transition {
|
146 |
-
transition: all 0.3s ease;
|
147 |
-
}
|
148 |
-
|
149 |
-
.text-2xl {
|
150 |
-
font-size: 1.5rem;
|
151 |
-
}
|
152 |
-
|
153 |
-
.text-blue-600 {
|
154 |
-
color: #2563eb;
|
155 |
-
}
|
156 |
-
|
157 |
-
.hover\:bg-blue-100:hover {
|
158 |
-
background-color: #dbeafe;
|
159 |
}
|
160 |
-
|
161 |
-
.text-red-500 {
|
162 |
-
color: #ef4444;
|
163 |
-
}
|
164 |
-
|
165 |
-
.hover\:bg-red-100:hover {
|
166 |
-
background-color: #fee2e2;
|
167 |
-
}
|
168 |
-
|
169 |
-
/* Content section */
|
170 |
-
.content {
|
171 |
-
padding: 60px 0;
|
172 |
-
background-color: rgba(255, 255, 255, 0.05);
|
173 |
-
backdrop-filter: blur(10px);
|
174 |
-
border-radius: 20px;
|
175 |
-
margin: 40px;
|
176 |
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
177 |
-
}
|
178 |
-
|
179 |
-
.section-title {
|
180 |
-
text-align: center;
|
181 |
-
font-size: 2.5rem;
|
182 |
-
margin-bottom: 40px;
|
183 |
-
position: relative;
|
184 |
-
font-family: 'Montserrat', sans-serif;
|
185 |
-
font-weight: 700;
|
186 |
-
background: linear-gradient(to right, var(--accent), var(--primary));
|
187 |
-
-webkit-background-clip: text;
|
188 |
-
-webkit-text-fill-color: transparent;
|
189 |
-
}
|
190 |
-
|
191 |
-
.skills-container {
|
192 |
-
display: grid;
|
193 |
-
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
194 |
-
gap: 30px;
|
195 |
-
padding: 0 40px;
|
196 |
-
}
|
197 |
-
|
198 |
-
.skill-card {
|
199 |
-
background: rgba(255, 255, 255, 0.08);
|
200 |
-
border-radius: 15px;
|
201 |
-
padding: 30px;
|
202 |
-
text-align: center;
|
203 |
-
transition: all 0.4s ease;
|
204 |
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
205 |
-
}
|
206 |
-
|
207 |
-
.skill-card:hover {
|
208 |
-
transform: translateY(-10px);
|
209 |
-
background: rgba(108, 99, 255, 0.15);
|
210 |
-
box-shadow: 0 10px 25px rgba(108, 99, 255, 0.2);
|
211 |
-
}
|
212 |
-
|
213 |
-
.skill-icon {
|
214 |
-
font-size: 3rem;
|
215 |
-
margin-bottom: 20px;
|
216 |
-
background: linear-gradient(135deg, var(--primary), var(--accent));
|
217 |
-
-webkit-background-clip: text;
|
218 |
-
-webkit-text-fill-color: transparent;
|
219 |
-
}
|
220 |
-
|
221 |
-
.skill-title {
|
222 |
-
font-size: 1.5rem;
|
223 |
-
margin-bottom: 15px;
|
224 |
-
font-weight: 600;
|
225 |
-
}
|
226 |
-
|
227 |
-
.skill-desc {
|
228 |
-
color: rgba(255, 255, 255, 0.8);
|
229 |
-
line-height: 1.6;
|
230 |
-
font-size: 0.95rem;
|
231 |
-
}
|
232 |
-
|
233 |
-
/* Projects Section */
|
234 |
-
.projects {
|
235 |
-
padding: 60px 0;
|
236 |
-
}
|
237 |
-
|
238 |
-
.project-grid {
|
239 |
-
display: grid;
|
240 |
-
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
241 |
-
gap: 30px;
|
242 |
-
padding: 0 40px;
|
243 |
-
}
|
244 |
-
|
245 |
-
.project-card {
|
246 |
-
background: rgba(255, 255, 255, 0.08);
|
247 |
-
border-radius: 15px;
|
248 |
-
overflow: hidden;
|
249 |
-
transition: all 0.4s ease;
|
250 |
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
251 |
-
}
|
252 |
-
|
253 |
.project-card:hover {
|
254 |
-
transform: translateY(-
|
255 |
-
box-shadow: 0 10px
|
256 |
-
}
|
257 |
-
|
258 |
-
.project-img {
|
259 |
-
height: 200px;
|
260 |
-
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
261 |
-
display: flex;
|
262 |
-
align-items: center;
|
263 |
-
justify-content: center;
|
264 |
-
font-size: 4rem;
|
265 |
-
color: white;
|
266 |
}
|
267 |
-
|
268 |
-
|
269 |
-
padding: 25px;
|
270 |
-
}
|
271 |
-
|
272 |
-
.project-title {
|
273 |
-
font-size: 1.4rem;
|
274 |
-
margin-bottom: 12px;
|
275 |
-
font-weight: 600;
|
276 |
-
}
|
277 |
-
|
278 |
-
.project-desc {
|
279 |
-
color: rgba(255, 255, 255, 0.8);
|
280 |
-
margin-bottom: 20px;
|
281 |
-
font-size: 0.95rem;
|
282 |
-
}
|
283 |
-
|
284 |
-
.project-tags {
|
285 |
-
display: flex;
|
286 |
-
flex-wrap: wrap;
|
287 |
-
gap: 8px;
|
288 |
-
margin-bottom: 20px;
|
289 |
-
}
|
290 |
-
|
291 |
-
.tag {
|
292 |
-
background: rgba(108, 99, 255, 0.2);
|
293 |
-
color: var(--primary);
|
294 |
-
padding: 4px 12px;
|
295 |
-
border-radius: 20px;
|
296 |
-
font-size: 0.8rem;
|
297 |
-
}
|
298 |
-
|
299 |
-
.btn {
|
300 |
-
display: inline-block;
|
301 |
-
background: linear-gradient(135deg, var(--primary), var(--accent));
|
302 |
color: white;
|
303 |
-
padding: 10px 25px;
|
304 |
-
border-radius: 30px;
|
305 |
-
text-decoration: none;
|
306 |
-
font-weight: 500;
|
307 |
-
transition: all 0.3s ease;
|
308 |
-
}
|
309 |
-
|
310 |
-
.btn:hover {
|
311 |
-
transform: translateY(-3px);
|
312 |
-
box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
|
313 |
-
}
|
314 |
-
|
315 |
-
/* About Section */
|
316 |
-
.about {
|
317 |
-
padding: 60px 0;
|
318 |
-
}
|
319 |
-
|
320 |
-
.about-content {
|
321 |
-
display: flex;
|
322 |
-
flex-wrap: wrap;
|
323 |
-
align-items: center;
|
324 |
-
gap: 40px;
|
325 |
-
padding: 0 40px;
|
326 |
-
}
|
327 |
-
|
328 |
-
.about-text {
|
329 |
-
flex: 1;
|
330 |
-
min-width: 300px;
|
331 |
-
}
|
332 |
-
|
333 |
-
.about-img {
|
334 |
-
flex: 1;
|
335 |
-
min-width: 300px;
|
336 |
-
height: 350px;
|
337 |
-
background: linear-gradient(135deg, var(--primary), var(--accent));
|
338 |
-
border-radius: 20px;
|
339 |
-
display: flex;
|
340 |
-
align-items: center;
|
341 |
-
justify-content: center;
|
342 |
-
font-size: 5rem;
|
343 |
-
color: white;
|
344 |
-
}
|
345 |
-
|
346 |
-
.about-title {
|
347 |
-
font-size: 2rem;
|
348 |
-
margin-bottom: 20px;
|
349 |
-
font-family: 'Montserrat', sans-serif;
|
350 |
-
background: linear-gradient(to right, var(--accent), var(--primary));
|
351 |
-
-webkit-background-clip: text;
|
352 |
-
-webkit-text-fill-color: transparent;
|
353 |
-
}
|
354 |
-
|
355 |
-
.about-desc {
|
356 |
-
color: rgba(255, 255, 255, 0.8);
|
357 |
-
margin-bottom: 25px;
|
358 |
-
line-height: 1.8;
|
359 |
-
}
|
360 |
-
|
361 |
-
/* Contact Section */
|
362 |
-
.contact {
|
363 |
-
padding: 60px 0;
|
364 |
-
}
|
365 |
-
|
366 |
-
.contact-container {
|
367 |
-
display: grid;
|
368 |
-
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
369 |
-
gap: 40px;
|
370 |
-
padding: 0 40px;
|
371 |
-
}
|
372 |
-
|
373 |
-
.contact-info {
|
374 |
-
background: rgba(255, 255, 255, 0.08);
|
375 |
-
border-radius: 15px;
|
376 |
-
padding: 30px;
|
377 |
-
text-align: center;
|
378 |
-
}
|
379 |
-
|
380 |
-
.contact-icon {
|
381 |
-
font-size: 2.5rem;
|
382 |
-
margin-bottom: 20px;
|
383 |
-
color: var(--primary);
|
384 |
-
}
|
385 |
-
|
386 |
-
.contact-title {
|
387 |
-
font-size: 1.4rem;
|
388 |
-
margin-bottom: 15px;
|
389 |
-
font-weight: 600;
|
390 |
-
}
|
391 |
-
|
392 |
-
.contact-detail {
|
393 |
-
color: rgba(255, 255, 255, 0.8);
|
394 |
-
font-size: 1.1rem;
|
395 |
-
}
|
396 |
-
|
397 |
-
.social-links {
|
398 |
-
display: flex;
|
399 |
-
justify-content: center;
|
400 |
-
gap: 15px;
|
401 |
-
margin-top: 20px;
|
402 |
-
}
|
403 |
-
|
404 |
-
@media (min-width: 768px) {
|
405 |
-
.md\:flex-row {
|
406 |
-
flex-direction: row;
|
407 |
-
}
|
408 |
-
}
|
409 |
-
|
410 |
-
/* Animation for header text */
|
411 |
-
@keyframes fadeInUp {
|
412 |
-
from {
|
413 |
-
opacity: 0;
|
414 |
-
transform: translateY(20px);
|
415 |
-
}
|
416 |
-
to {
|
417 |
-
opacity: 1;
|
418 |
-
transform: translateY(0);
|
419 |
-
}
|
420 |
-
}
|
421 |
-
|
422 |
-
.animated {
|
423 |
-
animation: fadeInUp 1s ease-out forwards;
|
424 |
-
}
|
425 |
-
|
426 |
-
.delay-1 {
|
427 |
-
animation-delay: 0.2s;
|
428 |
-
}
|
429 |
-
|
430 |
-
.delay-2 {
|
431 |
-
animation-delay: 0.4s;
|
432 |
-
}
|
433 |
-
|
434 |
-
.delay-3 {
|
435 |
-
animation-delay: 0.6s;
|
436 |
-
}
|
437 |
-
|
438 |
-
/* Particles Background */
|
439 |
-
#particles-js {
|
440 |
-
position: absolute;
|
441 |
-
width: 100%;
|
442 |
-
height: 100%;
|
443 |
-
top: 0;
|
444 |
-
left: 0;
|
445 |
-
z-index: -1;
|
446 |
-
}
|
447 |
-
|
448 |
-
/* Footer */
|
449 |
-
footer {
|
450 |
-
text-align: center;
|
451 |
-
padding: 40px 0;
|
452 |
-
color: rgba(255, 255, 255, 0.6);
|
453 |
-
font-size: 0.9rem;
|
454 |
-
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
455 |
-
margin-top: 60px;
|
456 |
-
}
|
457 |
-
|
458 |
-
.footer-links {
|
459 |
-
display: flex;
|
460 |
-
justify-content: center;
|
461 |
-
gap: 20px;
|
462 |
-
margin-bottom: 20px;
|
463 |
-
}
|
464 |
-
|
465 |
-
.footer-link {
|
466 |
-
color: rgba(255, 255, 255, 0.7);
|
467 |
-
text-decoration: none;
|
468 |
-
transition: all 0.3s ease;
|
469 |
-
}
|
470 |
-
|
471 |
-
.footer-link:hover {
|
472 |
-
color: var(--primary);
|
473 |
}
|
474 |
</style>
|
475 |
</head>
|
476 |
-
<body>
|
477 |
-
<!-- Particles Background -->
|
478 |
-
<div id="particles-js"></div>
|
479 |
-
|
480 |
<!-- Header Section -->
|
481 |
<header class="gradient-bg text-white py-12">
|
482 |
<div class="container mx-auto px-4">
|
483 |
<div class="flex flex-col md:flex-row items-center justify-between">
|
484 |
-
<div class="mb-8 md:mb-0
|
485 |
<h1 class="text-4xl md:text-5xl font-bold mb-2">Aditya Singh Gaur</h1>
|
486 |
-
<p class="text-xl md:text-2xl opacity-90
|
487 |
-
<div class="mt-6">
|
488 |
-
<a href="#contact" class="btn">Get In Touch</a>
|
489 |
-
</div>
|
490 |
</div>
|
491 |
<div class="flex space-x-4">
|
492 |
-
<a href="https://github.com/gaur3009-p" class="bg-white text-purple-700 p-3 rounded-full hover:bg-purple-100 transition
|
493 |
<i class="fab fa-github text-2xl"></i>
|
494 |
</a>
|
495 |
-
<a href="https://www.linkedin.com/in/aditya-singh-gaur-8356ba229/" class="bg-white text-blue-600 p-3 rounded-full hover:bg-blue-100 transition
|
496 |
<i class="fab fa-linkedin-in text-2xl"></i>
|
497 |
</a>
|
498 |
-
<a href="mailto:[email protected]" class="bg-white text-red-500 p-3 rounded-full hover:bg-red-100 transition
|
499 |
<i class="fas fa-envelope text-2xl"></i>
|
500 |
</a>
|
501 |
</div>
|
502 |
</div>
|
503 |
</div>
|
504 |
</header>
|
505 |
-
|
506 |
-
<!--
|
507 |
-
<
|
508 |
-
|
509 |
-
<
|
510 |
-
<
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
</
|
|
|
|
|
|
|
|
|
|
|
517 |
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
<p class="skill-desc">Creating innovative solutions with GANs, transformers, and other generative models. Experience with Stable Diffusion, GPT models, and creative AI applications.</p>
|
524 |
-
</div>
|
525 |
-
|
526 |
-
<div class="skill-card">
|
527 |
-
<div class="skill-icon">
|
528 |
-
<i class="fas fa-chart-line"></i>
|
529 |
-
</div>
|
530 |
-
<h3 class="skill-title">Data Science</h3>
|
531 |
-
<p class="skill-desc">Extracting insights from complex datasets using statistical analysis, data visualization, and predictive modeling. Proficient in Python, SQL, and data engineering.</p>
|
532 |
-
</div>
|
533 |
-
|
534 |
-
<div class="skill-card">
|
535 |
-
<div class="skill-icon">
|
536 |
-
<i class="fas fa-code"></i>
|
537 |
-
</div>
|
538 |
-
<h3 class="skill-title">Deep Learning</h3>
|
539 |
-
<p class="skill-desc">Developing neural network architectures for computer vision, NLP, and time-series analysis. Experience with TensorFlow, PyTorch, and Keras frameworks.</p>
|
540 |
-
</div>
|
541 |
-
</div>
|
542 |
-
</section>
|
543 |
-
|
544 |
-
<!-- Projects Section -->
|
545 |
-
<section class="projects">
|
546 |
-
<div class="container">
|
547 |
-
<h2 class="section-title">Featured Projects</h2>
|
548 |
-
<div class="project-grid">
|
549 |
-
<div class="project-card">
|
550 |
-
<div class="project-img">
|
551 |
-
<i class="fas fa-robot"></i>
|
552 |
</div>
|
553 |
-
<div class="
|
554 |
-
<
|
555 |
-
<
|
556 |
-
|
557 |
-
|
558 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
</div>
|
560 |
-
<p class="project-desc">Developed a content generation platform using transformer models that produces high-quality articles, social media posts, and marketing copy.</p>
|
561 |
-
<a href="#" class="btn">View Project</a>
|
562 |
</div>
|
563 |
</div>
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
|
|
|
|
|
|
568 |
</div>
|
569 |
-
<div class="
|
570 |
-
<
|
571 |
-
<
|
572 |
-
|
573 |
-
|
574 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
</div>
|
576 |
-
<
|
577 |
-
|
|
|
578 |
</div>
|
579 |
</div>
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
|
|
|
|
|
|
584 |
</div>
|
585 |
-
<div class="
|
586 |
-
<
|
587 |
-
<
|
588 |
-
|
589 |
-
|
590 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
591 |
</div>
|
592 |
-
<p class="project-desc">Built a CNN model that detects anomalies in medical scans with 97% accuracy, reducing diagnosis time by 40% for healthcare professionals.</p>
|
593 |
-
<a href="#" class="btn">View Project</a>
|
594 |
</div>
|
595 |
</div>
|
596 |
</div>
|
597 |
-
</
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
<
|
608 |
-
|
609 |
-
|
610 |
-
<
|
611 |
-
|
|
|
612 |
</div>
|
613 |
-
<div class="
|
614 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
</div>
|
616 |
</div>
|
617 |
-
</
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 |
</div>
|
629 |
-
<
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
</div>
|
636 |
</div>
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
</a>
|
648 |
-
</div>
|
649 |
</div>
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
<div class="social-links">
|
658 |
-
<a href="https://www.linkedin.com/in/aditya-singh-gaur-8356ba229/" class="bg-white text-blue-600 p-3 rounded-full hover:bg-blue-100 transition">
|
659 |
-
<i class="fab fa-linkedin-in"></i>
|
660 |
-
</a>
|
661 |
-
</div>
|
662 |
</div>
|
663 |
</div>
|
664 |
</div>
|
665 |
-
</section>
|
666 |
-
|
667 |
-
<footer>
|
668 |
-
<div class="container">
|
669 |
-
<div class="footer-links">
|
670 |
-
<a href="#" class="footer-link">Home</a>
|
671 |
-
<a href="#about" class="footer-link">About</a>
|
672 |
-
<a href="#projects" class="footer-link">Projects</a>
|
673 |
-
<a href="#contact" class="footer-link">Contact</a>
|
674 |
-
</div>
|
675 |
-
<p>© 2023 Aditya Singh Gaur. All rights reserved.</p>
|
676 |
-
<p class="mt-2">Designed with ❤️ and AI</p>
|
677 |
-
</div>
|
678 |
</footer>
|
679 |
-
|
680 |
-
<!-- Particles.js -->
|
681 |
-
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
|
682 |
<script>
|
683 |
-
//
|
684 |
document.addEventListener('DOMContentLoaded', function() {
|
685 |
-
|
686 |
-
particles: {
|
687 |
-
number: { value: 80, density: { enable: true, value_area: 800 } },
|
688 |
-
color: { value: "#6c63ff" },
|
689 |
-
shape: { type: "circle" },
|
690 |
-
opacity: { value: 0.5, random: true },
|
691 |
-
size: { value: 3, random: true },
|
692 |
-
line_linked: {
|
693 |
-
enable: true,
|
694 |
-
distance: 150,
|
695 |
-
color: "#6c63ff",
|
696 |
-
opacity: 0.3,
|
697 |
-
width: 1
|
698 |
-
},
|
699 |
-
move: {
|
700 |
-
enable: true,
|
701 |
-
speed: 2,
|
702 |
-
direction: "none",
|
703 |
-
random: true,
|
704 |
-
straight: false,
|
705 |
-
out_mode: "out",
|
706 |
-
bounce: false
|
707 |
-
}
|
708 |
-
},
|
709 |
-
interactivity: {
|
710 |
-
detect_on: "canvas",
|
711 |
-
events: {
|
712 |
-
onhover: { enable: true, mode: "repulse" },
|
713 |
-
onclick: { enable: true, mode: "push" },
|
714 |
-
resize: true
|
715 |
-
}
|
716 |
-
},
|
717 |
-
retina_detect: true
|
718 |
-
});
|
719 |
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
});
|
727 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
728 |
});
|
729 |
});
|
730 |
</script>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Aditya Singh Gaur - AI/ML Portfolio</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
|
9 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
.gradient-bg {
|
11 |
+
background: linear-gradient(135deg, #6e8efb, #a777e3);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
.project-card:hover {
|
14 |
+
transform: translateY(-5px);
|
15 |
+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
+
.skill-pill:hover {
|
18 |
+
background-color: #4f46e5;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
color: white;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
</style>
|
22 |
</head>
|
23 |
+
<body class="bg-gray-50 font-sans">
|
|
|
|
|
|
|
24 |
<!-- Header Section -->
|
25 |
<header class="gradient-bg text-white py-12">
|
26 |
<div class="container mx-auto px-4">
|
27 |
<div class="flex flex-col md:flex-row items-center justify-between">
|
28 |
+
<div class="mb-8 md:mb-0">
|
29 |
<h1 class="text-4xl md:text-5xl font-bold mb-2">Aditya Singh Gaur</h1>
|
30 |
+
<p class="text-xl md:text-2xl opacity-90">AI/ML Engineer & Generative AI Specialist</p>
|
|
|
|
|
|
|
31 |
</div>
|
32 |
<div class="flex space-x-4">
|
33 |
+
<a href="https://github.com/gaur3009-p" target="_blank" class="bg-white text-purple-700 p-3 rounded-full hover:bg-purple-100 transition">
|
34 |
<i class="fab fa-github text-2xl"></i>
|
35 |
</a>
|
36 |
+
<a href="https://www.linkedin.com/in/aditya-singh-gaur-8356ba229/" class="bg-white text-blue-600 p-3 rounded-full hover:bg-blue-100 transition">
|
37 |
<i class="fab fa-linkedin-in text-2xl"></i>
|
38 |
</a>
|
39 |
+
<a href="mailto:[email protected]" class="bg-white text-red-500 p-3 rounded-full hover:bg-red-100 transition">
|
40 |
<i class="fas fa-envelope text-2xl"></i>
|
41 |
</a>
|
42 |
</div>
|
43 |
</div>
|
44 |
</div>
|
45 |
</header>
|
46 |
+
|
47 |
+
<!-- Main Content -->
|
48 |
+
<main class="container mx-auto px-4 py-12">
|
49 |
+
<!-- About Section -->
|
50 |
+
<section class="mb-16">
|
51 |
+
<h2 class="text-3xl font-bold mb-6 text-gray-800 border-b-2 border-purple-200 pb-2">About Me</h2>
|
52 |
+
<p class="text-gray-700 text-lg leading-relaxed">
|
53 |
+
AI/ML Engineer specializing in Natural Language Processing and Generative AI applications.
|
54 |
+
Passionate about building innovative solutions that bridge human-computer interaction through
|
55 |
+
voice interfaces, intelligent chatbots, and creative AI tools. Experienced in both technical
|
56 |
+
implementation and product strategy for AI-powered startups.
|
57 |
+
</p>
|
58 |
+
</section>
|
59 |
+
|
60 |
+
<!-- Projects Section -->
|
61 |
+
<section class="mb-16">
|
62 |
+
<h2 class="text-3xl font-bold mb-8 text-gray-800 border-b-2 border-purple-200 pb-2">Featured Projects</h2>
|
63 |
|
64 |
+
<!-- Project 1 -->
|
65 |
+
<div class="project-card bg-white rounded-xl shadow-md overflow-hidden mb-8 transition duration-300">
|
66 |
+
<div class="md:flex">
|
67 |
+
<div class="md:flex-shrink-0 md:w-1/3 bg-gradient-to-r from-purple-500 to-indigo-600 p-8 flex items-center justify-center">
|
68 |
+
<i class="fas fa-microphone-alt text-white text-8xl"></i>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
</div>
|
70 |
+
<div class="p-8 md:w-2/3">
|
71 |
+
<div class="uppercase tracking-wide text-sm text-indigo-600 font-semibold mb-1">NLP & Speech Processing</div>
|
72 |
+
<h3 class="text-2xl font-bold text-gray-800 mb-3">Speech Grammar Correction via Voice Input</h3>
|
73 |
+
<p class="text-gray-600 mb-4">
|
74 |
+
Enables users to speak grammatically incorrect sentences, and the system automatically corrects them using AI-based NLP models.
|
75 |
+
Combines Automatic Speech Recognition (ASR), grammar correction transformers, and Text-to-Speech (TTS) to complete the loop.
|
76 |
+
</p>
|
77 |
+
<div class="flex flex-wrap gap-2 mb-4">
|
78 |
+
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded">Python</span>
|
79 |
+
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded">Gradio</span>
|
80 |
+
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded">Transformers</span>
|
81 |
+
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded">TTS</span>
|
82 |
+
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded">Hugging Face</span>
|
83 |
+
</div>
|
84 |
+
<div class="flex flex-col sm:flex-row gap-3">
|
85 |
+
<a href="https://huggingface.co/spaces/gaur3009-p/SHL_assign" target="_blank" class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg text-center transition">
|
86 |
+
<i class="fas fa-external-link-alt mr-2"></i> Live Demo
|
87 |
+
</a>
|
88 |
+
<a href="https://github.com/gaur3009-p/SHL_assign" target="_blank" class="bg-gray-200 hover:bg-gray-300 text-gray-800 px-4 py-2 rounded-lg text-center transition">
|
89 |
+
<i class="fab fa-github mr-2"></i> GitHub Repo
|
90 |
+
</a>
|
91 |
</div>
|
|
|
|
|
92 |
</div>
|
93 |
</div>
|
94 |
+
</div>
|
95 |
+
|
96 |
+
<!-- Project 2 -->
|
97 |
+
<div class="project-card bg-white rounded-xl shadow-md overflow-hidden mb-8 transition duration-300">
|
98 |
+
<div class="md:flex">
|
99 |
+
<div class="md:flex-shrink-0 md:w-1/3 bg-gradient-to-r from-blue-500 to-teal-600 p-8 flex items-center justify-center">
|
100 |
+
<i class="fas fa-robot text-white text-8xl"></i>
|
101 |
</div>
|
102 |
+
<div class="p-8 md:w-2/3">
|
103 |
+
<div class="uppercase tracking-wide text-sm text-blue-600 font-semibold mb-1">Question Answering System</div>
|
104 |
+
<h3 class="text-2xl font-bold text-gray-800 mb-3">QA Bot – RAG-Based Question Answering System</h3>
|
105 |
+
<p class="text-gray-600 mb-4">
|
106 |
+
Developed a chatbot capable of answering questions from custom documents using Retrieval Augmented Generation (RAG).
|
107 |
+
Built using vector databases, LLMs, and document chunking strategies to handle both unstructured and semi-structured data.
|
108 |
+
</p>
|
109 |
+
<div class="mb-4">
|
110 |
+
<h4 class="font-semibold text-gray-800 mb-2">Features:</h4>
|
111 |
+
<ul class="list-disc list-inside text-gray-600 space-y-1">
|
112 |
+
<li>Upload any document (PDF, DOCX, TXT)</li>
|
113 |
+
<li>Parses and indexes with Weaviate</li>
|
114 |
+
<li>Queries answered with accuracy and real-time context awareness</li>
|
115 |
+
</ul>
|
116 |
+
</div>
|
117 |
+
<div class="flex flex-wrap gap-2 mb-4">
|
118 |
+
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Weaviate-Client</span>
|
119 |
+
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Cohere</span>
|
120 |
+
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Gradio</span>
|
121 |
+
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">PyPDFLoader</span>
|
122 |
</div>
|
123 |
+
<a href="https://github.com/gaur3009-p/QA_Bot" target="_blank" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition">
|
124 |
+
<i class="fab fa-github mr-2"></i> GitHub Repo
|
125 |
+
</a>
|
126 |
</div>
|
127 |
</div>
|
128 |
+
</div>
|
129 |
+
|
130 |
+
<!-- Project 3 -->
|
131 |
+
<div class="project-card bg-white rounded-xl shadow-md overflow-hidden mb-8 transition duration-300">
|
132 |
+
<div class="md:flex">
|
133 |
+
<div class="md:flex-shrink-0 md:w-1/3 bg-gradient-to-r from-pink-500 to-rose-600 p-8 flex items-center justify-center">
|
134 |
+
<i class="fas fa-rocket text-white text-8xl"></i>
|
135 |
</div>
|
136 |
+
<div class="p-8 md:w-2/3">
|
137 |
+
<div class="uppercase tracking-wide text-sm text-pink-600 font-semibold mb-1">Startup Experience</div>
|
138 |
+
<h3 class="text-2xl font-bold text-gray-800 mb-3">Rookus Startup – GenAI Campaign Pivot</h3>
|
139 |
+
<p class="text-gray-600 mb-4">
|
140 |
+
Originally began with a vision to generate fashion designs using AI, but pivoted to Creative Campaigns as a Service (CaaS)
|
141 |
+
after identifying market needs. Built AI tools for generating marketing content, product descriptions, and integrating with
|
142 |
+
SEO tools and CRM workflows.
|
143 |
+
</p>
|
144 |
+
<div class="mb-4">
|
145 |
+
<h4 class="font-semibold text-gray-800 mb-2">Impact:</h4>
|
146 |
+
<ul class="list-disc list-inside text-gray-600 space-y-1">
|
147 |
+
<li>Runner-Up in the BIT Winter Cohort (July 26th 2025)</li>
|
148 |
+
<li>Secured initial funding and praise for innovation</li>
|
149 |
+
<li>Judges appreciated the pivot and idea clarity</li>
|
150 |
+
</ul>
|
151 |
+
</div>
|
152 |
+
<div class="mb-4">
|
153 |
+
<h4 class="font-semibold text-gray-800 mb-2">Key Learnings:</h4>
|
154 |
+
<ul class="list-disc list-inside text-gray-600 space-y-1">
|
155 |
+
<li>Market research and user demand are critical</li>
|
156 |
+
<li>Pivoting at the right time can transform product trajectory</li>
|
157 |
+
<li>Effective storytelling and problem solving wins investors</li>
|
158 |
+
</ul>
|
159 |
</div>
|
|
|
|
|
160 |
</div>
|
161 |
</div>
|
162 |
</div>
|
163 |
+
</section>
|
164 |
+
|
165 |
+
<!-- Skills Section -->
|
166 |
+
<section class="mb-16">
|
167 |
+
<h2 class="text-3xl font-bold mb-8 text-gray-800 border-b-2 border-purple-200 pb-2">Technical Skills</h2>
|
168 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
169 |
+
<div class="skill-pill bg-white p-6 rounded-lg shadow-sm border border-gray-200 transition duration-300">
|
170 |
+
<h3 class="text-xl font-semibold mb-3 text-gray-800 flex items-center">
|
171 |
+
<i class="fas fa-language text-purple-600 mr-2"></i> NLP & LLMs
|
172 |
+
</h3>
|
173 |
+
<ul class="space-y-2 text-gray-700">
|
174 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Prompt engineering & fine-tuning</li>
|
175 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Retrieval-Augmented Generation (RAG)</li>
|
176 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Speech-to-Text & Text-to-Speech</li>
|
177 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Grammar correction models</li>
|
178 |
+
</ul>
|
179 |
</div>
|
180 |
+
<div class="skill-pill bg-white p-6 rounded-lg shadow-sm border border-gray-200 transition duration-300">
|
181 |
+
<h3 class="text-xl font-semibold mb-3 text-gray-800 flex items-center">
|
182 |
+
<i class="fas fa-laptop-code text-blue-600 mr-2"></i> Development
|
183 |
+
</h3>
|
184 |
+
<ul class="space-y-2 text-gray-700">
|
185 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Python programming</li>
|
186 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Gradio UI development</li>
|
187 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Hugging Face ecosystem</li>
|
188 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Vector databases (Weaviate)</li>
|
189 |
+
</ul>
|
190 |
+
</div>
|
191 |
+
<div class="skill-pill bg-white p-6 rounded-lg shadow-sm border border-gray-200 transition duration-300">
|
192 |
+
<h3 class="text-xl font-semibold mb-3 text-gray-800 flex items-center">
|
193 |
+
<i class="fas fa-lightbulb text-yellow-600 mr-2"></i> Product & Strategy
|
194 |
+
</h3>
|
195 |
+
<ul class="space-y-2 text-gray-700">
|
196 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> AI product development</li>
|
197 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Market research & validation</li>
|
198 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Startup pitching & storytelling</li>
|
199 |
+
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Product pivoting strategies</li>
|
200 |
+
</ul>
|
201 |
</div>
|
202 |
</div>
|
203 |
+
</section>
|
204 |
+
|
205 |
+
<!-- Contact Section -->
|
206 |
+
<section>
|
207 |
+
<h2 class="text-3xl font-bold mb-8 text-gray-800 border-b-2 border-purple-200 pb-2">Get In Touch</h2>
|
208 |
+
<div class="bg-white rounded-lg shadow-md p-8">
|
209 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
|
210 |
+
<div>
|
211 |
+
<h3 class="text-xl font-semibold mb-4 text-gray-800">Contact Information</h3>
|
212 |
+
<div class="space-y-4">
|
213 |
+
<div class="flex items-start">
|
214 |
+
<i class="fas fa-envelope text-purple-600 mt-1 mr-3"></i>
|
215 |
+
<div>
|
216 |
+
<p class="text-gray-600">Email</p>
|
217 |
+
<a href="mailto:[email protected]" class="text-gray-800 font-medium hover:text-purple-600 transition">[email protected]</a>
|
218 |
+
</div>
|
219 |
+
</div>
|
220 |
+
<div class="flex items-start">
|
221 |
+
<i class="fab fa-github text-purple-600 mt-1 mr-3"></i>
|
222 |
+
<div>
|
223 |
+
<p class="text-gray-600">GitHub</p>
|
224 |
+
<a href="https://github.com/gaur3009-p" target="_blank" class="text-gray-800 font-medium hover:text-purple-600 transition">github.com/gaur3009-p</a>
|
225 |
+
</div>
|
226 |
+
</div>
|
227 |
+
<div class="flex items-start">
|
228 |
+
<i class="fab fa-linkedin-in text-purple-600 mt-1 mr-3"></i>
|
229 |
+
<div>
|
230 |
+
<p class="text-gray-600">LinkedIn</p>
|
231 |
+
<a href="#" target="_blank" class="text-gray-800 font-medium hover:text-purple-600 transition">linkedin.com/in/aditya-gaur</a>
|
232 |
+
</div>
|
233 |
+
</div>
|
234 |
+
</div>
|
235 |
</div>
|
236 |
+
<div>
|
237 |
+
<h3 class="text-xl font-semibold mb-4 text-gray-800">Send a Message</h3>
|
238 |
+
<form class="space-y-4">
|
239 |
+
<div>
|
240 |
+
<label for="name" class="block text-gray-700 mb-1">Name</label>
|
241 |
+
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 outline-none transition">
|
242 |
+
</div>
|
243 |
+
<div>
|
244 |
+
<label for="email" class="block text-gray-700 mb-1">Email</label>
|
245 |
+
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 outline-none transition">
|
246 |
+
</div>
|
247 |
+
<div>
|
248 |
+
<label for="message" class="block text-gray-700 mb-1">Message</label>
|
249 |
+
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 outline-none transition"></textarea>
|
250 |
+
</div>
|
251 |
+
<button type="submit" class="bg-purple-600 hover:bg-purple-700 text-white px-6 py-2 rounded-lg transition">
|
252 |
+
Send Message
|
253 |
+
</button>
|
254 |
+
</form>
|
255 |
</div>
|
256 |
</div>
|
257 |
+
</div>
|
258 |
+
</section>
|
259 |
+
</main>
|
260 |
+
|
261 |
+
<!-- Footer -->
|
262 |
+
<footer class="bg-gray-800 text-white py-8">
|
263 |
+
<div class="container mx-auto px-4">
|
264 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
265 |
+
<div class="mb-4 md:mb-0">
|
266 |
+
<p>© 2025 Aditya Singh Gaur. All rights reserved.</p>
|
|
|
|
|
267 |
</div>
|
268 |
+
<div class="flex space-x-4">
|
269 |
+
<a href="https://www.githib.com/gaur3009-p" class="hover:text-purple-300 transition">
|
270 |
+
<i class="fab fa-github text-xl"></i>
|
271 |
+
</a>
|
272 |
+
<a href="https://www.linkedin.com/in/aditya-singh-gaur-8356ba229/" class="hover:text-blue-300 transition">
|
273 |
+
<i class="fab fa-linkedin-in text-xl"></i>
|
274 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
275 |
</div>
|
276 |
</div>
|
277 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
</footer>
|
279 |
+
|
|
|
|
|
280 |
<script>
|
281 |
+
// Simple animation for project cards on scroll
|
282 |
document.addEventListener('DOMContentLoaded', function() {
|
283 |
+
const projectCards = document.querySelectorAll('.project-card');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
|
285 |
+
const observer = new IntersectionObserver((entries) => {
|
286 |
+
entries.forEach(entry => {
|
287 |
+
if (entry.isIntersecting) {
|
288 |
+
entry.target.style.opacity = 1;
|
289 |
+
entry.target.style.transform = 'translateY(0)';
|
290 |
+
}
|
|
|
291 |
});
|
292 |
+
}, { threshold: 0.1 });
|
293 |
+
|
294 |
+
projectCards.forEach(card => {
|
295 |
+
card.style.opacity = 0;
|
296 |
+
card.style.transform = 'translateY(20px)';
|
297 |
+
card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
|
298 |
+
observer.observe(card);
|
299 |
});
|
300 |
});
|
301 |
</script>
|