Update index.html
Browse files- index.html +429 -29
index.html
CHANGED
@@ -3,32 +3,38 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>Aditya Singh Gaur - Portfolio</title>
|
7 |
<!-- Load Font Awesome for icons -->
|
8 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
|
9 |
<style>
|
10 |
:root {
|
11 |
--primary: #6c63ff;
|
12 |
--secondary: #4a44b5;
|
13 |
-
--dark: #
|
|
|
14 |
--light: #f8f9fa;
|
|
|
15 |
}
|
16 |
|
17 |
* {
|
18 |
margin: 0;
|
19 |
padding: 0;
|
20 |
box-sizing: border-box;
|
21 |
-
font-family: '
|
22 |
}
|
23 |
|
24 |
body {
|
25 |
-
background: linear-gradient(135deg,
|
26 |
color: var(--light);
|
27 |
min-height: 100vh;
|
|
|
28 |
}
|
29 |
|
30 |
.gradient-bg {
|
31 |
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
|
|
32 |
}
|
33 |
|
34 |
.container {
|
@@ -85,6 +91,7 @@
|
|
85 |
|
86 |
.text-4xl {
|
87 |
font-size: 2.25rem;
|
|
|
88 |
}
|
89 |
|
90 |
.md\:text-5xl {
|
@@ -174,18 +181,11 @@
|
|
174 |
font-size: 2.5rem;
|
175 |
margin-bottom: 40px;
|
176 |
position: relative;
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
bottom: -10px;
|
183 |
-
left: 50%;
|
184 |
-
transform: translateX(-50%);
|
185 |
-
width: 80px;
|
186 |
-
height: 4px;
|
187 |
-
background: linear-gradient(to right, var(--primary), var(--secondary));
|
188 |
-
border-radius: 2px;
|
189 |
}
|
190 |
|
191 |
.skills-container {
|
@@ -196,32 +196,209 @@
|
|
196 |
}
|
197 |
|
198 |
.skill-card {
|
199 |
-
background: rgba(255, 255, 255, 0.
|
200 |
border-radius: 15px;
|
201 |
padding: 30px;
|
202 |
text-align: center;
|
203 |
-
transition:
|
|
|
204 |
}
|
205 |
|
206 |
.skill-card:hover {
|
207 |
transform: translateY(-10px);
|
208 |
-
background: rgba(
|
|
|
209 |
}
|
210 |
|
211 |
.skill-icon {
|
212 |
font-size: 3rem;
|
213 |
margin-bottom: 20px;
|
214 |
-
|
|
|
|
|
215 |
}
|
216 |
|
217 |
.skill-title {
|
218 |
font-size: 1.5rem;
|
219 |
margin-bottom: 15px;
|
|
|
220 |
}
|
221 |
|
222 |
.skill-desc {
|
223 |
color: rgba(255, 255, 255, 0.8);
|
224 |
line-height: 1.6;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
}
|
226 |
|
227 |
@media (min-width: 768px) {
|
@@ -258,26 +435,67 @@
|
|
258 |
animation-delay: 0.6s;
|
259 |
}
|
260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
/* Footer */
|
262 |
footer {
|
263 |
text-align: center;
|
264 |
-
padding:
|
265 |
color: rgba(255, 255, 255, 0.6);
|
266 |
font-size: 0.9rem;
|
267 |
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
}
|
269 |
</style>
|
270 |
</head>
|
271 |
<body>
|
|
|
|
|
|
|
|
|
272 |
<header class="gradient-bg text-white py-12">
|
273 |
<div class="container mx-auto px-4">
|
274 |
<div class="flex flex-col md:flex-row items-center justify-between">
|
275 |
<div class="mb-8 md:mb-0 animated">
|
276 |
<h1 class="text-4xl md:text-5xl font-bold mb-2">Aditya Singh Gaur</h1>
|
277 |
<p class="text-xl md:text-2xl opacity-90 delay-1 animated">AI/ML Engineer & Generative AI Specialist</p>
|
|
|
|
|
|
|
278 |
</div>
|
279 |
<div class="flex space-x-4">
|
280 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
<i class="fas fa-envelope text-2xl"></i>
|
282 |
</a>
|
283 |
</div>
|
@@ -285,15 +503,16 @@
|
|
285 |
</div>
|
286 |
</header>
|
287 |
|
288 |
-
|
289 |
-
|
|
|
290 |
<div class="skills-container">
|
291 |
<div class="skill-card">
|
292 |
<div class="skill-icon">
|
293 |
<i class="fas fa-brain"></i>
|
294 |
</div>
|
295 |
<h3 class="skill-title">Machine Learning</h3>
|
296 |
-
<p class="skill-desc">Building predictive models and implementing ML algorithms for real-world applications.</p>
|
297 |
</div>
|
298 |
|
299 |
<div class="skill-card">
|
@@ -301,7 +520,7 @@
|
|
301 |
<i class="fas fa-robot"></i>
|
302 |
</div>
|
303 |
<h3 class="skill-title">Generative AI</h3>
|
304 |
-
<p class="skill-desc">Creating innovative solutions with GANs, transformers, and other generative models.</p>
|
305 |
</div>
|
306 |
|
307 |
<div class="skill-card">
|
@@ -309,7 +528,7 @@
|
|
309 |
<i class="fas fa-chart-line"></i>
|
310 |
</div>
|
311 |
<h3 class="skill-title">Data Science</h3>
|
312 |
-
<p class="skill-desc">Extracting insights from complex datasets and
|
313 |
</div>
|
314 |
|
315 |
<div class="skill-card">
|
@@ -317,16 +536,197 @@
|
|
317 |
<i class="fas fa-code"></i>
|
318 |
</div>
|
319 |
<h3 class="skill-title">Deep Learning</h3>
|
320 |
-
<p class="skill-desc">Developing neural network architectures for computer vision and
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
</div>
|
322 |
</div>
|
323 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
|
325 |
<footer>
|
326 |
<div class="container">
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
<p>© 2023 Aditya Singh Gaur. All rights reserved.</p>
|
328 |
<p class="mt-2">Designed with ❤️ and AI</p>
|
329 |
</div>
|
330 |
</footer>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
</body>
|
332 |
</html>
|
|
|
3 |
<head>
|
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 |
<!-- Load Font Awesome for icons -->
|
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, var(--primary), var(--secondary));
|
37 |
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
38 |
}
|
39 |
|
40 |
.container {
|
|
|
91 |
|
92 |
.text-4xl {
|
93 |
font-size: 2.25rem;
|
94 |
+
font-family: 'Montserrat', sans-serif;
|
95 |
}
|
96 |
|
97 |
.md\:text-5xl {
|
|
|
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 {
|
|
|
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(-10px);
|
255 |
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
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 |
+
.project-content {
|
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) {
|
|
|
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 animated">
|
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 delay-1 animated">AI/ML Engineer & Generative AI Specialist</p>
|
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 delay-2 animated">
|
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 delay-2 animated">
|
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 delay-2 animated">
|
499 |
<i class="fas fa-envelope text-2xl"></i>
|
500 |
</a>
|
501 |
</div>
|
|
|
503 |
</div>
|
504 |
</header>
|
505 |
|
506 |
+
<!-- Skills Section -->
|
507 |
+
<section class="content">
|
508 |
+
<h2 class="section-title">My Expertise</h2>
|
509 |
<div class="skills-container">
|
510 |
<div class="skill-card">
|
511 |
<div class="skill-icon">
|
512 |
<i class="fas fa-brain"></i>
|
513 |
</div>
|
514 |
<h3 class="skill-title">Machine Learning</h3>
|
515 |
+
<p class="skill-desc">Building predictive models and implementing ML algorithms for real-world applications. Expertise in regression, classification, clustering, and recommendation systems.</p>
|
516 |
</div>
|
517 |
|
518 |
<div class="skill-card">
|
|
|
520 |
<i class="fas fa-robot"></i>
|
521 |
</div>
|
522 |
<h3 class="skill-title">Generative AI</h3>
|
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">
|
|
|
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">
|
|
|
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="project-content">
|
554 |
+
<h3 class="project-title">AI-Powered Content Generator</h3>
|
555 |
+
<div class="project-tags">
|
556 |
+
<span class="tag">Generative AI</span>
|
557 |
+
<span class="tag">NLP</span>
|
558 |
+
<span class="tag">GPT-4</span>
|
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 |
+
<div class="project-card">
|
566 |
+
<div class="project-img">
|
567 |
+
<i class="fas fa-chart-bar"></i>
|
568 |
+
</div>
|
569 |
+
<div class="project-content">
|
570 |
+
<h3 class="project-title">Predictive Analytics Dashboard</h3>
|
571 |
+
<div class="project-tags">
|
572 |
+
<span class="tag">Machine Learning</span>
|
573 |
+
<span class="tag">Data Visualization</span>
|
574 |
+
<span class="tag">Dashboard</span>
|
575 |
+
</div>
|
576 |
+
<p class="project-desc">Created a real-time analytics dashboard that predicts customer behavior and sales trends with 92% accuracy using ensemble learning techniques.</p>
|
577 |
+
<a href="#" class="btn">View Project</a>
|
578 |
+
</div>
|
579 |
+
</div>
|
580 |
+
|
581 |
+
<div class="project-card">
|
582 |
+
<div class="project-img">
|
583 |
+
<i class="fas fa-eye"></i>
|
584 |
+
</div>
|
585 |
+
<div class="project-content">
|
586 |
+
<h3 class="project-title">Computer Vision for Medical Imaging</h3>
|
587 |
+
<div class="project-tags">
|
588 |
+
<span class="tag">Deep Learning</span>
|
589 |
+
<span class="tag">Computer Vision</span>
|
590 |
+
<span class="tag">Healthcare</span>
|
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 |
</div>
|
598 |
+
</section>
|
599 |
+
|
600 |
+
<!-- About Section -->
|
601 |
+
<section class="about">
|
602 |
+
<div class="container">
|
603 |
+
<h2 class="section-title">About Me</h2>
|
604 |
+
<div class="about-content">
|
605 |
+
<div class="about-text">
|
606 |
+
<h3 class="about-title">Innovating with Artificial Intelligence</h3>
|
607 |
+
<p class="about-desc">I'm an AI/ML Engineer specializing in developing cutting-edge solutions that bridge the gap between theoretical research and practical applications. With a passion for generative AI, I create systems that not only solve complex problems but also inspire creativity.</p>
|
608 |
+
<p class="about-desc">My approach combines deep technical expertise with a user-centered design philosophy, ensuring that AI solutions are both powerful and accessible. I stay at the forefront of AI advancements, continuously exploring new techniques and frameworks.</p>
|
609 |
+
<div class="mt-6">
|
610 |
+
<a href="#" class="btn">Download Resume</a>
|
611 |
+
</div>
|
612 |
+
</div>
|
613 |
+
<div class="about-img">
|
614 |
+
<i class="fas fa-user-astronaut"></i>
|
615 |
+
</div>
|
616 |
+
</div>
|
617 |
+
</div>
|
618 |
+
</section>
|
619 |
+
|
620 |
+
<!-- Contact Section -->
|
621 |
+
<section id="contact" class="contact">
|
622 |
+
<div class="container">
|
623 |
+
<h2 class="section-title">Get In Touch</h2>
|
624 |
+
<div class="contact-container">
|
625 |
+
<div class="contact-info">
|
626 |
+
<div class="contact-icon">
|
627 |
+
<i class="fas fa-envelope"></i>
|
628 |
+
</div>
|
629 |
+
<h3 class="contact-title">Email</h3>
|
630 |
+
<p class="contact-detail">[email protected]</p>
|
631 |
+
<div class="social-links">
|
632 |
+
<a href="mailto:[email protected]" class="bg-white text-purple-700 p-3 rounded-full hover:bg-purple-100 transition">
|
633 |
+
<i class="fas fa-paper-plane"></i>
|
634 |
+
</a>
|
635 |
+
</div>
|
636 |
+
</div>
|
637 |
+
|
638 |
+
<div class="contact-info">
|
639 |
+
<div class="contact-icon">
|
640 |
+
<i class="fab fa-github"></i>
|
641 |
+
</div>
|
642 |
+
<h3 class="contact-title">GitHub</h3>
|
643 |
+
<p class="contact-detail">github.com/gaur3009-p</p>
|
644 |
+
<div class="social-links">
|
645 |
+
<a href="https://github.com/gaur3009-p" class="bg-white text-purple-700 p-3 rounded-full hover:bg-purple-100 transition">
|
646 |
+
<i class="fab fa-github"></i>
|
647 |
+
</a>
|
648 |
+
</div>
|
649 |
+
</div>
|
650 |
+
|
651 |
+
<div class="contact-info">
|
652 |
+
<div class="contact-icon">
|
653 |
+
<i class="fab fa-linkedin"></i>
|
654 |
+
</div>
|
655 |
+
<h3 class="contact-title">LinkedIn</h3>
|
656 |
+
<p class="contact-detail">linkedin.com/in/aditya-singh-gaur</p>
|
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 |
+
// Particles.js configuration
|
684 |
+
document.addEventListener('DOMContentLoaded', function() {
|
685 |
+
particlesJS('particles-js', {
|
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 |
+
// Add smooth scrolling
|
721 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
722 |
+
anchor.addEventListener('click', function (e) {
|
723 |
+
e.preventDefault();
|
724 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
725 |
+
behavior: 'smooth'
|
726 |
+
});
|
727 |
+
});
|
728 |
+
});
|
729 |
+
});
|
730 |
+
</script>
|
731 |
</body>
|
732 |
</html>
|