-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
735 lines (689 loc) · 37.3 KB
/
index.html
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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Hey! This is Kushagra Gupta, a passionate Software Engineer from Bengaluru!">
<meta name="keywords" content="kushagra, gupta, python, c, c++, java, python, web, dev, website, react, next">
<!-- Favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300&display=swap">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.5/typed.min.js"
integrity="sha512-1KbKusm/hAtkX5FScVR5G36wodIMnVd/aP04af06iyQTkD17szAMGNmxfNH+tEuFp3Og/P5G32L1qEC47CZbUQ=="
crossorigin="anonymous"></script>
<title>Kushagra Gupta</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg fixed-top container-fluid" id="myNav">
<a class="navbar-brand hvr-shadow mx-2" href="#about">
<img src="assets/logo.webp" width="ml-auto" height="40px" alt="kg-logo" loading="lazy">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span role="button" aria-label="hamburger"><i class="fa fa-bars" aria-hidden="true"
style="color: #bbe1fa"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link hvr-underline-from-center " href="#">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center " href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center " href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center " href="#projects">Project</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center " href="#contact">Contact</a>
</li>
</li>
</ul>
</div>
</nav>
<!-- Hero Landing -->
<div class="row">
<div class="col-lg-6 text-center container-fluid" data-aos="fade-up" id="headline">
<span class="typed"></span>
<br>
<a href="#about"><button type="button" class="btn hvr-grow btn-outline-primary btn-lg" id="hero-button">Know More
</button></a>
<ul>
<a href="https://www.linkedin.com/in/kg1510/" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-linkedin fa-2x hvr-float"></a>
<a href="https://www.instagram.com/aye_that_guitar_guy/?hl=en" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-instagram fa-2x hvr-float"></a>
<a href="https://www.youtube.com/kguitar" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-youtube fa-2x hvr-float"></a>
<a href="https://github.com/KG-1510" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-github fa-2x hvr-float"></a>
</ul>
</div>
<script>
var typed = new Typed('.typed', {
strings: ["Hi! I'm Kushagra",
"I'm a Software Engineer",
"I'm a Guitarist",
"I'm a Youtuber"],
smartBackspace: true,
typeSpeed: 40,
backSpeed: 40,
showCursor: true,
cursorChar: '_',
loop: true
});
</script>
<div class="col-lg-6 text-center container-fluid justify-content-center" data-aos="fade-up" id="hero-img">
<img src="assets/me.jpeg" width="500px" style="border-radius: 50%;" class="img-fluid" alt="kg-img">
</div>
</div>
<hr class="horizontal-rule" id="about">
<!-- About Section -->
<div class="about col-lg container-fluid" data-aos="fade-up" id="about-section">
<h2 id="about-heading">About Me</h2>
<p>Hello there! I am passionate Frontend Web Developer from Bengaluru, India with about a year of experience looking
for new career opportunities
</p>
<p>
I am also a Fingerstyle Guitarist and a YouTuber
with over a thousand subscribers
</p>
<p>I have an immense passion to learn
something new, which has led me to work on many projects and about 5 internships in the past
</p>
<p>
Want to know more about me? Check out my resume or scroll down to check out my experience and projects!
</p>
<a href="assets/Resume - Kushagra Gupta - Frontend Web Developer.pdf" target="_blank"
rel="noopener noreferrer"><button type="button" class="btn hvr-grow btn-outline-primary btn-lg"
id="resume-button">
<i class="fa fa-download" aria-hidden="true"></i> Resume
</button></a>
</div>
<!-- Skills Section Menu -->
<hr class="horizontal-rule" id="skills">
<div class="row">
<div class="skill-section-menu col-lg-3 col-md-3 hvr-underline-from-center container-fluid">
<button onclick="showExp()" id="exp-menu">Experience</button>
</div>
<div class="skill-section-menu col-lg-3 col-md-3 hvr-underline-from-center container-fluid">
<button onclick="showSkills()" id="skills-menu">Skills</button>
</div>
<div class="skill-section-menu col-lg-3 col-md-3 hvr-underline-from-center container-fluid">
<button onclick="showEdu()" id="edu-menu">Education</button>
</div>
</div>
<!-- Experience -->
<div id="exp-content">
<div class="container">
<div class="timeline">
<ul>
<li>
<div class="timeline-content">
<h3 class="date">January 2023 - Present</h3>
<h1><strong><a href="https://bajajfinserv.in/" target="_blank" rel="noopener noreferrer">Bajaj
Finserv</a></strong>
</h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Pune, India</i></span>
<p>
• Spearheaded the Bannerization project, deploying product banners across the entire web application
without relying on API calls on
the frontend, resulting in a 50% improvement in overall page performance.<br>
• Co-led the overhaul of the Single Sign On (SSO) project, implementing an industry-first solution using
Solid.js and AEM to
streamline over 20 user journeys on the bajajfinserv.in web application.<br>
• Engineered innovative solutions to optimize Core Web Vitals, achieving a 25% enhancement in page
performance, which
significantly improved page load times, user traffic, and revenue.<br>
• Designed and implemented an internal dashboard using React.js and AEM for the content operations team,
reducing page go-live
time by 50% and boosting operational efficiency.
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">August 2022 - November 2022</h3>
<h1><strong><a href="https://www.atlan.com" target="_blank" rel="noopener noreferrer">Atlan</a></strong>
</h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Remote Internship</i></span>
<p>
• Formulated and implemented features for the B2B SaaS product, addressing customer requirements such as
Markdown support,
enriched user analytics data for context-driven product decisions, and UI enhancements, positively
impacting over 100 customers
using the Atlan product. <br>
• Efficiently resolved over 40 Quality Assurance tickets, including UI bug fixes and improvements, to
achieve performance stability
and enhance the user experience for all customers utilizing the product.
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">January 2022 - August 2022</h3>
<h1><strong><a href="https://www.skillstrainer.in/" target="_blank"
rel="noopener noreferrer">SkillsTrainer</a></strong>
</h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Remote Internship</i></span>
<p>
• Architected and launched key features on SkillsTrainer.in, the world's largest vocational skilling and
certification portal with over 1.2
million users worldwide. Led the redevelopment of the LMS, Jobs, and Scholarship portal, resulting in a
20% increase in user base and customer outreach. Additionally, adeptly managed backend tasks to ensure
seamless integration and functionality.<br>
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">June 2022 - July 2022</h3>
<h1><strong><a href="https://www.fiserv.com/" target="_blank"
rel="noopener noreferrer">Fiserv</a></strong>
</h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Bangalore, India</i></span>
<p>
• Orchestrated the migration of the entire frontend UI from ASP.NET to React.js and Vanilla CSS for the
Real-Time Payment Network
(RTPN) portal utilized by Fiserv USA and India, improving page load time by 10 seconds. Led and
coordinated team efforts, effectively distributing tasks to complete the project one month ahead of
schedule. <br>
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">February 2021 - May 2022</h3>
<h1><strong><a href="https://www.kuddle.in/" target="_blank" rel="noopener noreferrer">Krate
(Kuddle)</a></strong>
</h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Remote Internship</i></span>
<p>
• Co-created Kuddle.in - Built a responsive, multi-platform e-commerce website frontend using Next.js
from the ground up to retail
organizational goods and services in India, catering to over 25,000+ page visits each month.<br>
• Developed the CRM and Vendor Management System portal frontend from scratch using React.js,
facilitating efficient management
of customer and catering to over 100 vendors interactions with the organization.
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">October 2020 - September 2021</h3>
<h1><strong><a href="https://srmkzilla.net/" target="_blank"
rel="noopener noreferrer">SRMKzilla</a></strong></h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>SRMIST, Chennai</i></span>
<p>
Ex-Technical Associate Lead<br>
• Developed "Money Mine" event portal for registration - an event to teach the community about the
importance of financial literacy. Built using React.js, Tailwind CSS<br>
• Developed LINKS - One Link. For All Your Links. An open-source project that is a linktr.ee alternative
to store links in one link, and have analytics and links shortened through KZILLA.XYZ. The project is
built using Next.js, Tailwind CSS MongoDB and Node.js<br>
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">August 2020 - August 2022</h3>
<h1><strong><a href="https://msclubsrm.in/" target="_blank" rel="noopener noreferrer">Microsoft Learn
Student Ambassador
SRM</a></strong></h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>SRMIST, Chennai</i></span>
<p>
Technical Lead<br>
• Manage the technical projects of the club and ensure on-time delivery of the developed products to the
commnunity.<br>
• SpookyPy - Conducted beginner friendly workshop on python<br><br>
Projects Developed:<br>
• StudEaz Extension for Google Classroom: Download multiple files in Google Classroom with no hassle.
Available on Chrome and Firefox Extension stores. Over 100+ downloads.
Built using HTML, CSS3, Javascript. Open Source Project.
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">August 2020 - November 2021</h3>
<h1><strong><a href="https://codechefsrm.in/" target="_blank" rel="noopener noreferrer">Codechef SRM
Student Chapter</a></strong>
</h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>SRMIST, Chennai</i></span>
<p>
Data Science and Web Dev Member<br>
• Worked on frontend for club Recruitment Portal<br>
• Guided projects for the club<br>
</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">July 2019 - July 2020</h3>
<h1><strong><a href="https://www.srmrobocon.com/" target="_blank" rel="noopener noreferrer">SRM Team
Robocon</a></strong></h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>SRMIST, Chennai</i></span>
<p>
Electronics Engineer in SIESED Domain<br>
• Participated in ABU Robocon 2019, qualified for 2nd round<br>
• PCB fabrication and subsystem assembly for UGV project under SIIC<br>
• Participated in Aaruush 2019 Robotics Challenge
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Skills -->
<div id="skills-content">
<div class="container" style="padding-top: 1rem;">
<div class="row">
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="100px"
src="https://assets-global.website-files.com/60f54f75bf970f7e1a9d0467/61e68ea1c479ed04a2febf56_Logo_Adobe_Experience_Manager.png"
alt="aem-icon" loading="lazy">
<p>AEM</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/react-native.png" alt="react-icon" loading="lazy">
<p>React.js</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/vue-js.png" alt="vue-icon" loading="lazy">
<p>Vue.js</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="96px" src="https://logowik.com/content/uploads/images/nextjs7685.logowik.com.webp"
alt="nextjs-icon" loading="lazy">
<p>Next.js</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="96px" src="https://www.solidjs.com/img/logo/without-wordmark/logo.png" alt="solid-icon"
loading="lazy">
<p>Solid.js</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/java-coffee-cup-logo.png" alt="java-icon" loading="lazy">
<p>Java</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/html-5.png" alt="html-icon" loading="lazy">
<p>HTML</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/css3.png" alt="css-icon" loading="lazy">
<p>CSS</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/mongodb.png" alt="mongodb-icon" loading="lazy">
<p>MongoDB</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://cdn.icon-icons.com/icons2/2699/PNG/512/expressjs_logo_icon_169185.png" width="96px"
alt="express-icon" loading="lazy">
<p>Express.js</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/nodejs.png" alt="nodejs-icon" loading="lazy">
<p>Node.js</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/c-programming.png" alt="c-icon" loading="lazy">
<p>C</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/c-plus-plus-logo.png" alt="cpp-icon" loading="lazy">
<p>C++</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/python.png" alt="python-icon" loading="lazy">
<p>Python</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/golang.png" alt="golang-icon" loading="lazy">
<p>GoLang</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/javascript.png" alt="js-icon" loading="lazy">
<p>Javascript</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/typescript.png" alt="ts-icon" loading="lazy">
<p>Typescript</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/bootstrap.png" alt="bs-icon" loading="lazy">
<p>Bootstrap</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="100px"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Tailwind_CSS_Logo.svg/2048px-Tailwind_CSS_Logo.svg.png"
alt="tailwind-icon" width="96px" loading="lazy">
<p>Tailwind CSS</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="96px"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/GraphQL_Logo.svg/2048px-GraphQL_Logo.svg.png"
alt="graphql-icon" loading="lazy">
<p>GraphQL</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="96px" src="https://firebase.google.com/static/images/brand-guidelines/logo-vertical.png"
alt="firebase-icon" loading="lazy">
<p>Firebase</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="96px" src="https://seeklogo.com/images/A/ant-design-logo-EAB6B3D5D9-seeklogo.com.png"
alt="antd-icon" loading="lazy">
<p>Ant Design</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="100px" src="https://www.vhv.rs/dpng/d/38-384674_opencv-logo-png-transparent-png.png"
alt="opencv-icon" loading="lazy">
<p>OpenCV</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/color/96/000000/git.png" alt="git-icon" loading="lazy">
<p>Git</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img src="https://img.icons8.com/fluent/96/000000/data-configuration.png" alt="sql-icon" loading="lazy">
<p>SQL</p>
</div>
<div data-aos="fade-up" class="skillbox skill-card hvr-glow col-lg-2 col-md-4 col-sm-6 col-6 container-fluid">
<img width="96px"
src="https://res.cloudinary.com/postman/image/upload/t_team_logo/v1629869194/team/2893aede23f01bfcbd2319326bc96a6ed0524eba759745ed6d73405a3a8b67a8"
alt="postman-icon" loading="lazy">
<p>Postman</p>
</div>
</div>
</div>
</div>
<!-- Education -->
<div id="edu-content">
<div class="container">
<div class="timeline">
<ul>
<li>
<div class="timeline-content">
<h3 class="date">2016-2017</h3>
<h1><strong>Ryan International School</strong></h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Bangalore, India</i></span>
<p>Completed 10th Grade education in ICSE board and secured 94.2% with 100% score in Mathematics.</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">2018-2019</h3>
<h1><strong>Sri Chaitanya Techno School</strong></h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Bangalore, India</i></span>
<p>Completed 12th Grade education in CBSE board and secured 86%</p>
</div>
</li>
<li>
<div class="timeline-content">
<h3 class="date">2019-2023</h3>
<h1><strong>SRM Institute of Science and Technology</strong></h1>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> <i>Chennai, India</i></span>
<p>B.Tech in Computer Science Engineering with specialization in Artificial Intelligence and
Machine Learning. Cumulative GPA of 9.74/10. Former Tech lead of Microsoft, and Mozilla campus
clubs.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Projects -->
<hr class="horizontal-rule" id="projects">
<h2 id="project-heading">Projects</h2>
<div class="wrapper">
<div class="project container">
<div class="row">
<div data-aos="fade-left" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/links.png" class="card-img-top" alt="project-clik" loading="lazy">
<div class="card-body">
<h5 class="card-title">LINKS</h5>
<h6><img width="30px" src="https://img.icons8.com/plasticine/100/000000/react.png" alt="react-icon" />
Next.js</h6>
<p class="card-text" style="line-height: 2.7rem;"><i>Project under SRMKZILLA</i><br>
Your Ultimate URL Warehouse. 🔗 Now you can have just one link for all the social links!</p>
<a href="https://github.com/srm-kzilla/links" target="_blank" rel="noopener noreferrer"
class="social-project fa fa-github fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-left" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/clik.png" class="card-img-top" alt="project-links" loading="lazy">
<div class="card-body">
<h5 class="card-title">CLIK</h5>
<h6><img src="https://img.icons8.com/color/24/000000/python.png" alt="python-icon"> Python</h6>
<p class="card-text" style="line-height: 2.7rem;"><i>Project under MLSA-SRM</i><br>
CLIK is a command line interface tool to hide and manage your API keys and Secret/Auth tokens. This is
for project managers for easy management of project-related keys and their distribution.</p>
<a href="https://github.com/MLSA-SRM/Project-CLIK" target="_blank" rel="noopener noreferrer"
class="social-project fa fa-github fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-left" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/se.webp" class="card-img-top" alt="project-portfolio-logo">
<div class="card-body">
<h5 class="card-title">
StudEaz for Google Classroom
</h5>
<h6><img src="https://img.icons8.com/color/24/000000/html-5.png" alt="html-icon"> HTML
<img src="https://img.icons8.com/color/24/000000/css3.png" alt="css-icon"> CSS
<img src="https://img.icons8.com/color/24/000000/javascript.png" alt="js-icon"> Javascript
</h6>
<p class="card-text" style="line-height: 2.5rem;"><i>Project under MLSA-SRM</i><br>
Make downloading documents from Google Classroom a hassle-free process using this Chrome Extension!</p>
<a href="https://chrome.google.com/webstore/detail/studeaz-for-google-classr/ddmpckcmhpnpgfcgfgeklphbbigknjgf?hl=en"
target="_blank" rel="noopener noreferrer"
class="social-project social-link fa fa-external-link fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-right" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/filora.jpg" class="card-img-top" alt="project-filora">
<div class="card-body">
<h5 class="card-title">
Filora - File Sharing App
</h5>
<h6>
<img width="30px" src="https://img.icons8.com/plasticine/100/000000/react.png" alt="react-icon" />
Next.js
</h6>
<p class="card-text" style="line-height: 3.4rem;"><i>Project under MLSA-SRM</i><br>
A free, open-source file sharing app. Works cross platform and uses Peer.js under the hood!</p>
<a href="https://github.com/MLSA-SRM/file-sharing-app" target="_blank" rel="noopener noreferrer"
class="social-project fa fa-github fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-right" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/logo.webp" class="card-img-top" alt="project-portfolio-logo">
<div class="card-body">
<h5 class="card-title">
My Portfolio Website
</h5>
<h6>
<img src="https://img.icons8.com/color/24/000000/html-5.png" alt="html-icon"> HTML
<img src="https://img.icons8.com/color/24/000000/css3.png" alt="css-icon"> CSS
<img src="https://img.icons8.com/color/24/000000/javascript.png" alt="js-icon"> Javascript
<img src="https://img.icons8.com/color/24/000000/bootstrap.png" alt="bs-icon"> Bootstrap
</h6>
<p class="card-text" style="line-height: 3.4rem;"><i>Individual Project</i><br>
A website where you are right now! Showcasing my experience, skills and projects. Fully responsive.</p>
<a href="https://github.com/KG-1510/My-Portfolio-Website" target="_blank" rel="noopener noreferrer"
class="social-project fa fa-github fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-right" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/quizeasy.jpg" class="card-img-top" alt="project-quizeasy">
<div class="card-body">
<h5 class="card-title">
QuizEasy
</h5>
<h6>
<img src="https://img.icons8.com/color/24/000000/python.png" alt="python-icon"> Python
<img src="https://img.icons8.com/color/24/000000/html-5.png" alt="html-icon"> HTML
<img src="https://img.icons8.com/color/24/000000/css3.png" alt="css-icon"> CSS
<img src="https://img.icons8.com/color/24/000000/javascript.png" alt="js-icon"> Javascript <br>
<img src="https://img.icons8.com/color/24/000000/bootstrap.png" alt="bs-icon"> Bootstrap
</h6>
<p class="card-text" style="line-height: 2.2rem;"><i>Collaborative Project</i><br><br>
A web app to generate questions for PDF DOC you upload on-the-go! QuizEasy aims to cut down on the
hassle of relying on the last minute preparation, question banks, and cramming of portions, instead, it
makes learning intuitive by making the Natural Language Processing (NLP) algorithm do the heavy lifting
of framing questions from the materials and helps the user to practice the concepts while studying on
the go.
</p>
<a href="https://github.com/KG-1510/QuizEasy" target="_blank" rel="noopener noreferrer"
class="social-project fa fa-github fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-left" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/speech-chess.webp" class="card-img-top" alt="project-speech-chess">
<div class="card-body">
<h5 class="card-title">
Speech Chess
</h5>
<h6><img src="https://img.icons8.com/color/24/000000/python.png" alt="python-icon"> Python</h6>
<p class="card-text" style="line-height: 2.2rem;"><i>Collaborative Project</i><br><br>
A Python script written in Jupyter notebook to take input commands in the form of speech to play Chess!
</p>
<a href="https://github.com/KG-1510/SpeechChess" target="_blank" rel="noopener noreferrer"
class="social-project fa fa-github fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-left" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/altium-pcb.webp" class="card-img-top" alt="project-altium-pcb">
<div class="card-body">
<h5 class="card-title">
Altium PCB Fabriction
</h5>
<h6><img src="https://img.icons8.com/color/24/000000/electronics.png" alt="elec-icon"> Altium</h6>
<p class="card-text" style="line-height: 1.69rem;"><i>Project under SRM Team Robocon</i><br><br>
Designed a PCB for L298N IC Motor Driver on the Altium Designer software. Fabricated the PCB on copper
plate using the carbon imprinting technique and FeCl3 solution.</p><br><br><br><br>
<a href="https://photos.google.com/share/AF1QipPuJnckl_gubOz0fuJF9Sm0pw3EonWNqMqCYQkBHS3tIQqFIzHEsbLaOVTh2UMmwg?key=TWFjbmI1WXd5WVV4anJzc1d4dURMQ25Jcms1eFJ3"
target="_blank" rel="noopener noreferrer"
class="social-project social-link fa fa-external-link fa-2x hvr-float"></a>
</div>
</div>
</div>
<div data-aos="fade-left" class="project-content col-md-6 col-lg-4">
<div class="card mx-30 hvr-float">
<img src="assets/ugv-project.webp" class="card-img-top" alt="project-ugv-dave">
<div class="card-body">
<h5 class="card-title">
DAVE - Unmanned Ground Vehicle
</h5>
<h6><img src="https://img.icons8.com/color/24/000000/electronics.png" alt="elec-icon"> PCB Fabrication and
Subsystem
Assembly</h6>
<p class="card-text" style="line-height: 1.37rem;"><i>Project under SRM Team Robocon</i><br>
An autonomous bot to deliver payload inside SRMIST campus, with a max payload of 15 Kg</p>
<a href="https://photos.google.com/share/AF1QipON45m-ss-RSui9B8dlWwWcRRjFaJT3nhKm1LpkeQNOL2UfzUpslznyfZ9SyHpHrg?key=REJBOGxFZS05OEJjamVNNFE2cENJQUQ5YzV6ZHpB"
target="_blank" rel="noopener noreferrer"
class="social-project social-link fa fa-external-link fa-2x hvr-float"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact -->
<hr class="horizontal-rule" id="contact">
<h2 data-aos="fade-up" id="contact-heading">Get in Touch!</h2>
<section class="get-in-touch">
<div class="container-fluid contact-form">
<div data-aos="fade-up" class="row justify-content-center">
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<div class="form-field col-lg">
<label for="name" class="label">Name</label>
<input id="name" autocomplete="off" class="input-text" type="text" placeholder="John Doe" name="Name">
</div>
<div class="form-field col-lg">
<label for="email" class="label">E-mail</label>
<input id="email" autocomplete="off" class="input-text" type="email" placeholder="[email protected]"
name="Email">
</div>
<div class="form-field col-lg">
<label for="message-area" class="label">Write something!</label>
<textarea name="Message" autocomplete="off" class="input-text" id="message-area"
placeholder="Hey there!"></textarea>
</div>
<div class="form-field col-lg">
<input class="submit-btn hvr-grow btn-lg" type="submit" value="Send!" name="" id="">
</div>
</form>
</div>
</div>
</section>
<!-- Footer -->
<div class="footer-section">
<p>Catch up with me on my Socials!</p>
<ul>
<a href="https://www.linkedin.com/in/kg1510/" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-linkedin fa-2x hvr-float"></a>
<a href="https://www.instagram.com/aye_that_guitar_guy/?hl=en" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-instagram fa-2x hvr-float"></a>
<a href="https://www.youtube.com/kguitar" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-youtube fa-2x hvr-float"></a>
<a href="https://github.com/KG-1510" target="_blank" rel="noopener noreferrer"
class="social-home fa fa-github fa-2x hvr-float"></a>
</ul>
<p>Made with ❤ by Kushagra Gupta</p>
<p>© All Rights Reserved</p>
</div>
<!-- jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"></script>
<!--DOM Manipulation Javascript -->
<script type="text/javascript" src="scripts/script.js"></script>
<!-- AOS Javascript -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 1000,
once: false,
});
</script>
</body>
</html>