-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·733 lines (601 loc) · 40.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="assets/img/faviconN.png" type="image/x-icon">
<!--=============== REMIXICONS ===============-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/3.4.0/remixicon.css" crossorigin="">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Neeraj Portfolio 🌐</title>
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">
<span class="nav__logo-circle">NGS</span>
<span class="nav__logo-name">Neeraj GS</span>
</a>
<div class="nav__menu" id="nav-menu">
<span class="nav__title">Menu</span>
<h3 class="nav__name">Neeraj GS</h3>
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About Me</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">Connect With Me</a>
</li>
<li class="nav__item">
<a href="#projects" style="background-color: black;" onmouseover="this.style.backgroundColor='hsl(14, 80%, 50%)'" onmouseout="this.style.backgroundColor='black'" class="nav__link nav__link-button">My Projects</a>
</li>
</ul>
<div class="nav__close" id="nav-close">
<i class="ri-close-line"></i>
</div>
</div>
<div class="nav__buttons">
<!-- //dark and light theme -->
<i class="ri-moon-line change-theme" id="theme-button"></i>
<div class="nav__toggle" id="nav-toggle">
<i class="ri-menu-4-line"></i>
</div>
</div>
</nav>
</header>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== HOME ====================-->
<section class="home section" id="home">
<div class="home__container container grid">
<h1 class="home__name">
Neeraj GS
</h1>
<div class="home__perfil">
<div class="home__image">
<img class="home__img" src="assets/img/Nee.JPG" alt="my-image-home">
<div class="home__shadow"></div>
<img src="assets/img/curved-arrow.svg" alt="" class="home__arrow">
<img src="assets/img/random-lines.svg" alt="" class="home__line">
<div class="geometric-box"></div>
</div>
<div class="home__social">
<a href="https://github.com/neeraj-gs" target="_blank" class="home__social-link"><i class="ri-github-fill"></i></a>
<a href="https://www.linkedin.com/in/neeraj-gs/" target="_blank" class="home__social-link"><i class="ri-linkedin-box-line"></i></a>
<a href="https://twitter.com/neeraj_gs_05" target="_blank" class="home__social-link"><i class="ri-twitter-line"></i></a>
<a href="https://neerajgs.hashnode.dev/" target="_blank" class="contact__social-link"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="currentColor"><path d="M3 9.00886C3 5.69022 5.69071 2.99951 9.00935 2.99951H12C15.3093 2.99951 17.9942 5.67508 18.0093 8.98082H18.9533C20.1037 8.98082 21 9.87713 21 11.0275V14.9902C21 18.3088 18.3093 20.9995 14.9907 20.9995H9.00935C5.69071 20.9995 3 18.3088 3 14.9902V9.00886ZM9.00935 4.99951C6.79528 4.99951 5 6.79479 5 9.00886V14.9902C5 17.2042 6.79528 18.9995 9.00935 18.9995H14.9907C17.2047 18.9995 19 17.2042 19 14.9902V11H18C16.9243 11 16 10.0756 16 9C16 6.78593 14.2141 4.99951 12 4.99951H9.00935ZM8 9C8 8.44772 8.44772 8 9 8H12.5C13.0523 8 13.5 8.44772 13.5 9C13.5 9.55228 13.0523 10 12.5 10H9C8.44772 10 8 9.55228 8 9ZM9 14C8.44772 14 8 14.4477 8 15C8 15.5523 8.44772 16 9 16H15C15.5523 16 16 15.5523 16 15C16 14.4477 15.5523 14 15 14H9Z"></path></svg></a>
<a href="https://www.instagram.com/neeraj_gs/" target="_blank" class="home__social-link"><i class="ri-instagram-line"></i></a>
</div>
</div>
<div class="home__info">
<p class="home__description">
<b>A Full Stack Developer</b> <br> <br> Currently building projects and expanding knowledge in Web3.0 and AI. <br> <br>
<span style="font-weight: bold;">TechStack:</span> <span style="font-weight: 500; font-size: smaller;">| Next.js | React.js Typescript | Node.js | MongoDB | SQL | Prisma ORM | Docker| AWS | GraphQL | Tailwind CSS |</span>
</p>
<a href="#about" class="home__scroll">
<div class="home__scroll-box">
<i class="ri-arrow-down-s-line"></i>
</div>
<span class="home__scroll-text">Scroll Down</span>
</a>
</div>
</div>
</section>
<!--==================== ABOUT ====================-->
<section class="about section" id="about">
<div class="about__container container grid">
<h2 class="section__title-1">About Me</h2>
<div class="about__perfil">
<div class="about__image">
<img src="/assets/img/aboutimg.jpeg" alt="about image" class="about__img">
<div class="about__shadow"></div>
<div class="geometric-box"></div>
<img src="/assets/img/random-lines.svg" alt="" class="about__line">
<div class="about__box"></div>
</div>
</div>
<div class="about__info">
<p class="about__description">
Full Stack Developer with an immense knowledge in various frameworks, databses, and languages with best code practices. <br>
Passionate about <b>Blockchain, AI</b> and <b>Open Source</b>. <br>
Worked on various software development projects and I am currently looking to expand and apply my knowledge in a professional setting.
</p>
<ul class="about__list">
<li class="about__item">
<span style="font-size: xx-large;"><b>My Skills:</b></span> <br> <br>
<b>❖ Languages :</b> TypeScript, Solidity ,JavaScript, Java ,Python <br>
<b>❖ Frameworks :</b> React.js , Next.js ,GraphQL, Node.js ,Tailwind <br>
<b>❖ Databases :</b> PostgreSQL , MongoDB , MySQL , PrismaORM ,Redis <br>
<b>❖ Other Tools:</b> Linux , AWS , Docker, CI/CD,OpenAI API <br>
</li>
</ul>
<div class="about__buttons">
<a href="#contact" class="button ">
<i class="ri-send-plane-line"></i>Connect With Me.
</a>
<a href="https://www.linkedin.com/" target="_blank" class="button__ghost">
<i class="ri-linkedin-box-line"></i>
</a>
<a href="https://twitter.com/neeraj_gs_05" target="_blank" class="button__ghost">
<i class="ri-twitter-line"></i>
</a>
</div>
</div>
</div>
</section>
<!--==================== PROJECTS ====================-->
<section class="projects section" id="projects">
<h2 class="section__title-1"><span>My Recent Projects</span></h2>
<div class="projects__filters" >
<button class="button filter-btn active" data-filter="all">All</button>
<button class="button filter-btn" data-filter="fullstack">Full-Stack</button>
<button class="button filter-btn" data-filter="blockchain">Blockchain</button>
<button class="button filter-btn" data-filter="backend">Backend</button>
<button class="button filter-btn" data-filter="frontend">Frontend</button>
</div>
<div class="projects__container container grid">
<!-- Project 1 -->
<article class="projects__card" data-category="fullstack">
<div class="projects__image">
<img src="assets/img/CourseGen_AI.png" alt="weather-app-image" class="projects__img">
<a href="https://coursegen-x-ai.vercel.app/" target="_blank" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Course App [FullStack + AI] </h3>
<h2 class="projects__title">CourseGen AI</h2>
<p class="projects__description">
An Online Learning platform , to Create your own customized Best Course using AI. Creates course from freely available videos that are Ranked the best.<br>
<b>Tech Stack:</b>NextJs, ReactJs, Youtube API , Unsplash API , OpenAI API, Docker , Prisma ORM ,MySQL ,TypeScript , Next-Auth ,Github Actions CI-CD ,Tailwind CSS , VPS Server Setup
</p>
</div>
<div class="projects__buttons">
<a href="https://coursegen-x-ai.vercel.app/" target="_blank" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/CourseGen-AI" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- Project 2 -->
<article class="projects__card" data-category="frontend">
<div class="projects__image">
<img src="assets/img/CoverMe.png" alt="socket-master" class="projects__img" height="250" width="250">
<a href="https://live-coverme-ai.vercel.app/" target="_blank" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">AI Chrome Extension</h3>
<h2 class="projects__title">CoverMe:AI</h2>
<p class="projects__description">
An AI Integrated Chrome extension that generates Cover Letter for a Job Posting Site , As of Now integrated on Linkedin. <br>
Takes your Uploaded Resume and scrapes the Job Description and generates your own customized cover letter , and increases the chances of getting shortisted.
<br>
<b>TechStack:</b> React.JS, OpenAI API , JavaScript , Tailwind CSS, ShadCN UI, Web Scraping.
</p>
</div>
<div class="projects__buttons">
<a href="https://live-coverme-ai.vercel.app/" target="_blank" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/CoverMe-AI-Chrome-Extension" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-3 -->
<article class="projects__card" data-category="fullstack">
<div class="projects__image">
<img src="assets/img/GenX-AI.png" alt="project-image-1" class="projects__img">
<a href="https://genx-ai-neeraj-gs.vercel.app/" target="_blank" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">GPT 5.0 [Full Stack + AI]</h3>
<h2 class="projects__title">GenX-AI</h2>
<p class="projects__description">
An AI Saas Platform that generates Images,Videos,Music,Code and Chat using OpenAI API. An Enhanced version of ChatGPT <br>
<b>TechStack:</b> NextJS, TypeScript, ReactJS, Prisma ORM, MySQL ,TailwindCSS , OpenAI API.
</p>
</div>
<div class="projects__buttons">
<a href="https://genx-ai-neeraj-gs.vercel.app/" target="_blank" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/GenXAI" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-4 -->
<article class="projects__card" data-category="frontend">
<div class="projects__image">
<img src="assets/img/Climatify.png" alt="weather-app-image" class="projects__img">
<a href="https://climatify-mocha.vercel.app/" target="_blank" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Weather App [Frontend+ API] </h3>
<h2 class="projects__title">Climatify</h2>
<p class="projects__description">
A Real Time Weather App, Allows users to Search and check climate of a particular place, also gives climate based on the users geolocation.<br>
<b>Tech Stack:</b>ReactJs , Open Weather API , TypeScript , CSS ,HTML.
</p>
</div>
<div class="projects__buttons">
<a href="https://climatify-mocha.vercel.app/" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/Climatify" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-5 -->
<article class="projects__card" data-category="fullstack">
<div class="projects__image">
<img src="assets/img/Sociolize_Image.png" alt="sociolize-image" class="projects__img">
<a href="https://sociolize.vercel.app/" target="_blank" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Social Media [Full Stack] </h3>
<h2 class="projects__title">Sociolize</h2>
<p class="projects__description">
Social Media App, that allows users to connect with friends all around the world. Has all the interaction features of a socail media Platform <br>
<b>Tech Stack:</b> NextJs, ReactJs , TypeScript , GraphQL , Prisma ORM , PostgreSQL , Redis,JSON Web Tokens ,Tailwind CSS ,Codegen , Graphql Request, React Query, AWS.
</p>
</div>
<div class="projects__buttons">
<a href="https://sociolize.vercel.app/" target="_blank" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/Sociolize" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- Project - 6 -->
<article class="projects__card" data-category="fullstack">
<div class="projects__image">
<img src="assets/img/NoteX-AI.png" alt="project-image-1" class="projects__img">
<a target="_blank" href="https://note-x-ai.vercel.app/" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Notes App [Full Stack + AI]</h3>
<h2 class="projects__title">NoteX-AI</h2>
<p class="projects__description">
A Note Taking App that is Integrated with AI , that auto-completes the Notes helping generating fast notes and boost productivity. Integrated with DALL-E to generate images based on description <br>
<b>TechStack:</b> NextJs , TypeScript , TailwindCSS , OpenAI API , ReactJs , PostgreSQL , FireBase , DrizzleORM
</p>
</div>
<div class="projects__buttons">
<a href="https://note-x-ai.vercel.app/" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/NoteX-AI" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-7 -->
<article class="projects__card" data-category="fullstack">
<div class="projects__image">
<img src="assets/img/ShareBox.png" alt="project-image-1" class="projects__img">
<a href="https://share-box-amber.vercel.app/" target="_blank" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Storage[Full Stack+ CRUD]</h3>
<h2 class="projects__title">ShareBox</h2>
<p class="projects__description">
An online storage app that stores your files on the internet and can be accessed from anywhere. Allows to share files with others and collaborate with others.
Implemented All CRUD operations/ <br>
<b>TechStack:</b> NextJs , TypeScript ,FireBase , ReactJs , Tailwind CSS , ShadCN UI.
</p>
</div>
<div class="projects__buttons">
<a href="https://share-box-amber.vercel.app/" target="_blank" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/ShareBox" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- Project - 8 -->
<article class="projects__card" data-category="backend">
<div class="projects__image">
<img src="assets/img/ThreadsClone.png" alt="project-image-1" class="projects__img">
<!-- <a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a> -->
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Complete Backend [GraphQL + Docker]</h3>
<h2 class="projects__title">Threads App Backned </h2>
<p class="projects__description">
Threads App Backend using GraphQL that has all the GraphQL functionalities and allows users to interact. <br> Will be developing Frontend Soon... <br>
<b>TechStack:</b> GraphQL , Apollo , TypeScript , Prisma ORM , ExpressJS ,PostgreSQL , Docker , Docker Compose
</p>
</div>
<div class="projects__buttons">
<!-- <a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a> -->
<a href="https://github.com/neeraj-gs/Threads-App-Backend-GraphQL" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- Project - 9 -->
<article class="projects__card" data-category="backend">
<div class="projects__image">
<img src="assets/img/GmailAuto.png" alt="project-image-1" class="projects__img">
<!-- <a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a> -->
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Complete Backend [Node.js +Express.Js]</h3>
<h2 class="projects__title">Gmail Auto Reply </h2>
<p class="projects__description">
A Backend Service that Auto Replies to Mails when you are not able to reply and creates a label for all replied messages for future reference<br> Will be developing Frontend Soon... <br>
<b>TechStack:</b> Node.js, Express.js, Oauth2, GmailAPI, JavaScript
</p>
</div>
<div class="projects__buttons">
<!-- <a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a> -->
<a href="https://github.com/neeraj-gs/Gmail-Auto-Reply" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-10 -->
<article class="projects__card" data-category="frontend">
<div class="projects__image">
<img src="assets/img/shoe-store.png" alt="project-image-1" class="projects__img">
<a href="https://shoe-store-sandy.vercel.app/" target="_blank" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Frontend[TailwindCSS]</h3>
<h2 class="projects__title"></h2>
<p class="projects__description">
A Landing Page, for a Shoe Store to shop Quality shoes. Completely Responsive Website. <br>
<b>TechStack:</b> ReactJs , Tailwind CSS , TypeScript ,Responsive Design
</p>
</div>
<div class="projects__buttons">
<a href="https://shoe-store-sandy.vercel.app/" target="_blank" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/ShoeBox-TailwindCSS" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-11 -->
<article class="projects__card" data-category="frontend">
<div class="projects__image">
<img src="assets/img/TicTacToe.png" alt="project-image-1" class="projects__img">
<a href="https://tic-tac-toe-eta-olive.vercel.app/" class="projects__button button" target="_blank">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Game [Frontend]</h3>
<h2 class="projects__title">Tic Tac Toe Game</h2>
<p class="projects__description">
A Game that allows users to enter Either X or O and the player who first their X or O in the same line Row Wise,Column Wise or Diagnolly Wins the Game.<br>
<b>TechStack:</b> ReactJs , JavaScript , CSS ,HTML.
</p>
</div>
<div class="projects__buttons">
<a href="https://tic-tac-toe-eta-olive.vercel.app/" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/TicTac-Toe" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-14 -->
<article class="projects__card" data-category="blockchain">
<div class="projects__image">
<img src="assets/img/Flash.png" alt="project-image-1" class="projects__img">
<a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Smart Contract Arbitrage</h3>
<h2 class="projects__title">Flash Loan on BNB</h2>
<p class="projects__description">
A Smart contract that implements flash loan using the triangular arbitrage using BUSB,WBNB,CAKE coins to take flashloan and make profits. <br>
<b>Tech Stack: Hardhat, Solidity, JavaScript, PanCake Swap, Pancake Protocol </b>
</p>
</div>
<div class="projects__buttons">
<!-- <a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a> -->
<a href="https://github.com/neeraj-gs/Solidity-Smart-Contracts/tree/main/FlashLoans" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-17 -->
<!-- <article class="projects__card" data-category="blockchain">
<div class="projects__image">
<img src="assets/img/Dappazon.png" alt="project-image-1" class="projects__img">
<a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Full-Stack dAPP</h3>
<h2 class="projects__title">DappaZon</h2>
<p class="projects__description">
A Web3.0 Full-Stack E-Commerce Platform to Buy Products. A Complete E -Commerce Platform. <br>
<b>Tech Stack: Hardhat, JavaScript, Solidity,Ethers.js, React.js</b>
</p>
</div>
<div class="projects__buttons">
<a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/dappuniversity/dappazon" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article> -->
<!-- #PROJECT-15 -->
<article class="projects__card" data-category="blockchain">
<div class="projects__image">
<img src="assets/img/BuyMeCofee.png" alt="project-image-1" class="projects__img">
<a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Full-Stack dAPP</h3>
<h2 class="projects__title">Buy Me Coffe</h2>
<p class="projects__description">
A Full-Stack Decentralized Application that allows users/visitors to transfer amount into the owner , to show their Support for them. All transactions can be viewd by users. <br>
<b>Tech Stack: Solidity, Ether.js, Hardhat, React.js, Tailwind CSS</b>
</p>
</div>
<div class="projects__buttons">
<!-- <a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a> -->
<a href="https://github.com/neeraj-gs/BuyMeCoffe-Daap" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-16 -->
<!-- <article class="projects__card" data-category="blockchain">
<div class="projects__image">
<img src="assets/img/SmartContracts.png" alt="project-image-1" class="projects__img">
<a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a>
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Solidity Contracts</h3>
<h2 class="projects__title">Smart Contract Hub</h2>
<p class="projects__description">
This Repository Contains a list of smart contracts realted to Multiple Projects such as Management, DeFi, Hospital and More.
<b>Tech Stack: Solidity</b>
</p>
</div>
<div class="projects__buttons">
<a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a>
<a href="https://github.com/neeraj-gs/Solidity-Smart-Contracts" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article> -->
<!-- #PROJECT-12 -->
<article class="projects__card" data-category="frontend">
<div class="projects__image">
<img src="assets/img/PortfolioWebsite.png" alt="project-image-1" class="projects__img">
<!-- <a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a> -->
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Portfolio website [Frontend]</h3>
<h2 class="projects__title">My Portfolio Website</h2>
<p class="projects__description">
<b> You Are Currently viewing This Site. </b>
</p>
</div>
<div class="projects__buttons">
<!-- <a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a> -->
<a href="https://github.com/neeraj-gs/PortFolio-Website" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
<!-- #PROJECT-13 -->
<article class="projects__card" data-category="blockchain">
<div class="projects__image">
<img src="assets/img/ERC20.png" alt="project-image-1" class="projects__img">
<!-- <a href="#" class="projects__button button">
<i class="ri-arrow-right-up-line"></i>
</a> -->
</div>
<div class="projects__content">
<h3 class="projects__subtitle">Solidity + Remix</h3>
<h2 class="projects__title">ERC 20 - Token</h2>
<p class="projects__description">
ERC 20 Token from scratch implementing all the required 6 functions for an ERC 20 tokens along with events
<b>Tech Stack: Solidity, RemixIDE, Metamask, OpenZepplin</b>
</p>
</div>
<div class="projects__buttons">
<!-- <a href="" target="_blank" class="projects__link"><i class="ri-global-line">Go Live</i></a> -->
<a href="https://github.com/neeraj-gs/ERC-20-Token" target="_blank" class="projects__link"><i class="ri-github-line">View Code.</i></a>
</div>
</article>
</div>
<div class="all-projects">
<a href="https://github.com/neeraj-gs" target="_blank" class="button ">
<i class="ri-arrow-right-up-line"></i>All Projects
</a>
</div>
</section>
<!--==================== CONTACT ====================-->
<section class="contact section" id="contact">
<div class="contact__container grid">
<div class="contact__data">
<h2 class="section__title-2"><span>Connect With Me</span></h2>
<p class="contact__description-1">
Lets All Connect and Grow Together!!.
</p>
<p class="contact__description-2">
<span style="font-weight: 800;">For a Formal Conversation:</span> Type In your Message Below a Mail is Automatically Sent.
</p>
<div class="geometric-box"></div>
</div>
<div class="contact__mail">
<h2 class="contact__title">Write Here ! Mail is sent Automatically</h2>
<form action="" id="contact-form" class="contact__form">
<div class="contact__group">
<div class="contact__box">
<input type="text" class="contact__input" id="name" name="user_name" required placeholder="First Name">
<label for="name" class="contact__label">First Name</label>
</div>
<div class="contact__box">
<input type="email" class="contact__input" id="email" name="user_email" required placeholder="Email Adrress">
<label for="email" class="contact__label"></label>
</div>
</div>
<div class="contact__box">
<input type="text" class="contact__input" id="subject" name="user_subject" required placeholder="Subject">
<label for="subject" class="contact__label">Subject</label>
</div>
<div class="contact__box contact__area">
<textarea name="user__message" id="message" class="contact__input" required placeholder="Message"></textarea>
<label for="message" class="contact__label">Message</label>
</div>
<p class="contact__message" id="contact-message"></p>
<button class="contact__button button" type="submit">
<i class="ri-send-plane-line"></i>Send Message
</button>
</form>
</div>
<div class="contact__social">
<img src="assets/img/curved-arrow.svg" alt="" class="contact__social-arrow">
<div class="contact__social-data">
<div>
<p class="contact__social-description-1">
Want to Have an informal conversation With Me?
</p>
<p class="contact__social-description-2">
Write on My Social Networks..
</p>
</div>
<div class="contact__social-links">
<a href="https://twitter.com/neeraj_gs_05" target="_blank" class="contact__social-link"><i class="ri-twitter-line"></i></a>
<a href="https://github.com/neeraj-gs" target="_blank" class="contact__social-link"><i class="ri-github-line"></i></a>
<a href="https://www.linkedin.com/in/neeraj-gs/" target="_blank" class="contact__social-link"><i class="ri-linkedin-box-line"></i></a>
<a href="https://neerajgs.hashnode.dev/" target="_blank" class="contact__social-link"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32" fill="currentColor"><path d="M3 9.00886C3 5.69022 5.69071 2.99951 9.00935 2.99951H12C15.3093 2.99951 17.9942 5.67508 18.0093 8.98082H18.9533C20.1037 8.98082 21 9.87713 21 11.0275V14.9902C21 18.3088 18.3093 20.9995 14.9907 20.9995H9.00935C5.69071 20.9995 3 18.3088 3 14.9902V9.00886ZM9.00935 4.99951C6.79528 4.99951 5 6.79479 5 9.00886V14.9902C5 17.2042 6.79528 18.9995 9.00935 18.9995H14.9907C17.2047 18.9995 19 17.2042 19 14.9902V11H18C16.9243 11 16 10.0756 16 9C16 6.78593 14.2141 4.99951 12 4.99951H9.00935ZM8 9C8 8.44772 8.44772 8 9 8H12.5C13.0523 8 13.5 8.44772 13.5 9C13.5 9.55228 13.0523 10 12.5 10H9C8.44772 10 8 9.55228 8 9ZM9 14C8.44772 14 8 14.4477 8 15C8 15.5523 8.44772 16 9 16H15C15.5523 16 16 15.5523 16 15C16 14.4477 15.5523 14 15 14H9Z"></path></svg></a>
<a href="https://www.instagram.com/neeraj_gs" target="_blank" class="contact__social-link"><i class="ri-instagram-line"></i></a>
</div>
</div>
</div>
</div>
</section>
</main>
<!--==================== FOOTER ====================-->
<footer class="footer">
<div class="footer">
<div class="footer__container container grid">
<ul class="footer__links">
<li>
<a href="#home" class="footer__link">Home</a>
</li>
<li>
<a href="#about" class="footer__link">About</a>
</li>
<li>
<a href="#projects" class="footer__link">Projects</a>
</li>
</ul>
<span class="footer__copy">
© Created with Love❤️️ By
<a href="http://github.com/neeraj-gs" target="_blank">Neeraj GS.</a> | <a href="https://github.com/neeraj-gs/PortFolio-Website" target="_blank">Download Source Code</a>
</span>
</div>
</div>
</footer>
<!--=============== SCROLLREVEAL ===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== EMAIL JS ===============-->
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>