-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
665 lines (662 loc) · 24.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<link
href="
https://cdn.jsdelivr.net/npm/locomotive-scroll@4.1.4/dist/locomotive-scroll.min.css
"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./style.css" />
<title>Amitesh Portfolio | A UI/UX Dev -> Full Stack Dev</title>
</head>
<body>
<main id="main" class="relative">
<header
class="md:hidden flex sticky bg-white w-full border z-20 rounded-xl top-0 left-0 right-0 justify-between items-center md:px-10 px-4 py-2"
>
<h3 class="font-black text-4xl">Amitesh</h3>
<nav
id="mobile-nav"
class="absolute top-16 h-[80vh] translate-x-[-36rem] bg-[#E1AFD1]/90 backdrop-blur border rounded-3xl z-20 w-[80%] py-10 left-0 px-10"
>
<ul class="flex flex-col gap-4">
<li class="text-7xl font-black"><a href="#home">Home</a></li>
<li class="text-7xl font-black">
<a href="#tech-skills">Tech</a>
</li>
<li class="text-7xl font-black">
<a href="#projects">Projects</a>
</li>
<li class="text-7xl font-black"><a href="#about">About</a></li>
<li class="text-7xl font-black">
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<nav class="block">
<div class="menu" onclick="openMenu()">
<img
src="./assets/svg/menu-svgrepo-com.svg"
alt="menu"
class="w-8 h-8"
/>
</div>
<div class="close hidden" onclick="closeMenu()">
<img
src="./assets/svg/cross-svgrepo-com.svg"
class="w-8 h-8"
alt="close"
/>
</div>
</nav>
</header>
<header
class="md:flex hidden z-20 justify-between max-w-6xl mx-auto items-center md:px-10 px-4 mx-auto py-5"
>
<h3 class="font-black text-3xl">Amitesh</h3>
<nav>
<ul class="flex gap-4 text-xl">
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#tech-skills">Tech</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</header>
<!-- Mobile navigate -->
<nav
class="fixed bottom-0 sm:top-[30%] h-fit sm:w-fit w-full sm:right-0 z-20 bg-white/20 backdrop-blur-[2px] rounded-full py-4 side-nav hidden"
>
<ul class="flex sm:flex-col sm:gap-4 items-center text-2xl">
<li>
<a href="#home"><i class="fa-solid fa-house"></i></a>
</li>
<li>
<a href="#tech-skills"><i class="fa-solid fa-microchip"></i></a>
</li>
<li>
<a href="#projects"><i class="fa-solid fa-sheet-plastic"></i></a>
</li>
<li>
<a href="#about"><i class="fa-solid fa-address-card"></i></a>
</li>
<li>
<a href="#contact"><i class="fa-solid fa-envelope"></i></a>
</li>
</ul>
</nav>
<!-- Back to top -->
<div
class="back-to-top hidden fixed sm:bottom-10 bottom-20 z-20 right-4 bg-primary h-10 w-10 flex justify-center items-center rounded-full text-white"
>
<a href="#main">
<i class="fa-solid fa-arrow-up-long"></i>
</a>
</div>
<!-- HERO-SECTION -->
<div id="home" class="xl:h-[90vh] h-full">
<!-- NAVBAR-SECTION -->
<!-- HERO-TEXT-SECTION -->
<section
class="px-2 mx-auto 2xl:max-w-fit max-w-6xl flex items-center flex-col justify-center md:py-0 h-[80vh] hero-section"
>
<div>
<p class="md:text-4xl text-3xl py-2 px-3" id="Main-top">
Hi, I am B.Amitesh
</p>
<h1
id="main-heading"
class="2xl:text-[5rem] xl:text-[5em] md:text-6xl sm:text-3xl md:block hidden text-4xl font-black hollow-text font-lost"
>
A Passionate Developer
</h1>
<h1
id="main-heading"
class="text-5xl md:hidden block text-6xl px-2 font-black"
>
A Passionate Developer
</h1>
</div>
<p class="md:text-xl text-sm text-center px-4 py-6" id="main-para">
A UI/UX developer with one year of experience, skilled in
JavaScript, React.js, Next.js, Node.js, and the MERN stack, <br />
now aspiring to become a full-stack/Frontend developer.
</p>
<div class="my-10 px-4 flex gap-4 justify-center">
<a
target="_blank"
href="https://wa.link/7iojwp"
class="md:px-10 px-4 mail-hover border border-transparent hover:border-black hover:bg-transparent hover:text-black font-bold text-lg py-2 bg-primary rounded-full text-white duration-300"
>
Hire Me
</a>
<a
download
href="./assets/B.Amitesh.pdf"
class="md:px-10 px-4 resume-hover border border-transparent hover:border-black hover:bg-transparent font-bold text-lg py-2 bg-tertiary rounded-full duration-300"
>
Resume
</a>
</div>
<div class="flex gap-4 px-6 items-center justify-center">
<a
href="https://www.linkedin.com/in/bamitesh183"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/svg/linkedin-linked-in-svgrepo-com.svg"
class="w-7 h-7 hover:scale-110 duration-300"
alt=""
/>
</a>
<a
href="https://www.github.com/amitesh-183"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/svg/github-142-svgrepo-com.svg"
class="w-7 h-7 hover:scale-110 duration-300"
alt=""
/>
</a>
<a href="mailto:bamitesh520@gmail.com">
<img
src="./assets/svg/gmail-svgrepo-com.svg"
class="w-7 h-7 hover:scale-110 duration-300"
alt=""
/>
</a>
</div>
</section>
</div>
<hr class="border border-black opacity-5 mx-10" />
<!-- TECH-SECTION -->
<section
id="tech-skills"
class="tech-section md:px-10 px-2 py-10"
id="tech"
>
<h2 class="font-creamy text-5xl py-3 text-center">
Tech <span class="text-primary font-creamy">Skills</span>
</h2>
<div class="flex justify-center">
<img src="./assets/images/skills.gif" alt="skills" />
</div>
<section
id="tech-skill"
class="flex justify-center flex-col md:px-10 px-0 gap-8 py-6 overflow-hidden relative mx-auto max-w-7xl"
>
<div class="flex" id="swippe-left">
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item1 item"
>
<img
src="./assets/svg/html-5-svgrepo-com.svg"
class="w-7 h-7"
alt="html"
/>
<h2>Html</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item2 item"
>
<img
src="./assets/svg/css-3-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>CSS</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item3 item"
>
<img
src="./assets/svg/scss-svgrepo-com.svg"
class="w-7 h-7"
alt="sass"
/>
<h2>Sass</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item4 item"
>
<img
src="./assets/svg/javascript-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Javascript</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item5 item"
>
<img
src="./assets/svg/react-svgrepo-com.svg"
class="w-7 h-7"
alt="react"
/>
<h2>React Js</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item6 item"
>
<img
src="./assets/svg/typescript-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Typescript</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item7 item"
>
<img
src="./assets/svg/redux-svgrepo-com.svg"
class="w-7 h-7"
alt="redux"
/>
<h2>Redux</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item8 item"
>
<img
src="./assets/svg/next-js-svgrepo-com.svg"
class="w-7 h-7"
alt="next-js"
/>
<h2>Next Js</h2>
</div>
</div>
<div class="flex" id="swippe-right">
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item-2nd item-2nd1"
>
<img
src="./assets/svg/django-svgrepo-com.svg"
class="w-7 h-7"
alt="django"
/>
<h2>Django</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item-2nd item-2nd2"
>
<img
src="./assets/svg/angular-icon-svgrepo-com.svg"
class="w-7 h-7"
alt="Angular"
/>
<h2>Angular</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item-2nd item-2nd3"
>
<img
src="./assets/svg/node-js-svgrepo-com.svg"
class="w-7 h-7"
alt="node-js"
/>
<h2>Node Js</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item-2nd item-2nd4"
>
<img
src="./assets/svg/express-svgrepo-com.svg"
class="w-7 h-7"
alt="express-js"
/>
<h2>Express Js</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item-2nd item-2nd5"
>
<img
src="./assets/svg/mongodb-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Mongo DB</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item-2nd item-2nd6"
>
<img
src="./assets/svg/mysql-svgrepo-com.svg"
class="w-7 h-7"
alt="Mysql"
/>
<h2>Mysql</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item-2nd item-2nd7"
>
<img
src="./assets/svg/tailwind-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Tailwind CSS</h2>
</div>
</div>
<div class="flex" id="swippe-left-last">
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item3rd item-3rd1"
>
<img
src="./assets/svg/bootstrap-4-logo-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Bootstrap</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item3rd item-3rd2"
>
<img
src="./assets/svg/python-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Python</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item3rd item-3rd3"
>
<img
src="./assets/svg/php-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Php</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item3rd item-3rd4"
>
<img
src="./assets/svg/github-142-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>GitHub</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item3rd item-3rd5"
>
<img
src="./assets/svg/git-svgrepo-com.svg"
class="w-7 h-7"
alt="js"
/>
<h2>Git</h2>
</div>
<div
class="border border-zinc-900 border-opacity-5 shadow-lg shadow-[#E1AFD1] rounded-xl px-6 py-4 flex gap-3 items-center item3rd item-3rd6"
>
<img
src="./assets/svg/docker-svgrepo-com.svg"
class="w-7 h-7"
alt="docker"
/>
<h2>Docker</h2>
</div>
</div>
</section>
</section>
<hr class="border border-black opacity-5 mx-10" />
<!-- PROJECT-SECTION -->
<section id="projects" class="project-section px-10 py-10">
<h2 class="font-creamy text-5xl py-6 text-center">
<span class="text-primary font-creamy">My Projects</span>
</h2>
<div class="flex justify-center">
<img
src="./assets/images/projects.png"
class="w-48 h-48 my-10"
alt="Projects"
/>
</div>
<div class="container-prj">
<a
href="https://estore.pythonanywhere.com"
target="_blank"
data-text="E-Store"
style="--r: -15"
class="glass"
>
<img
src="https://i.pinimg.com/originals/8b/73/38/8b7338d002a1c50ebc91c6d97ef97cc7.png"
alt=""
class="rounded-xl"
/>
</a>
<a
href="https://loop-sepia.vercel.app"
target="_blank"
data-text="Loop"
style="--r: 5"
class="glass"
>
<img
src="https://cdn.dribbble.com/users/4559851/screenshots/11333039/music_desktop_ui_-_dribbble_4x.png"
alt=""
class="rounded-xl"
/>
</a>
<a
href="https://sineema.netlify.app/"
target="_blank"
data-text="Sinema"
style="--r: 25"
class="glass"
>
<img
src="https://cdn.dribbble.com/users/2119910/screenshots/14543486/dribble_post_final_filmat_4x.png"
alt=""
class="rounded-xl"
/>
</a>
</div>
</section>
<!-- ABOUT-SECTION -->
<section id="about" class="about-section py-10">
<h2 class="font-creamy text-5xl py-6 text-center">
About <span class="text-primary font-creamy">me</span> -
</h2>
<!-- <div class="flex justify-center">
<img
src="./assets/images/profile-pic.png"
class="md:w-48 md:h-48 h-32 w-32 rounded-full"
alt="amitesh"
/>
</div> -->
<section class="">
<div class="container mx-auto md:px-6 px-2 py-10">
<!-- <div class="text-center">
<h2 class="text-4xl font-semibold text-gray-800">B. Amitesh</h2>
<p class="text-gray-600 mt-4">
UI/UX Developer and Aspiring Full Stack Developer
</p>
</div> -->
<div class="flex justify-center mt-6">
<div
class="w-full rounded-lg shadow md:px-5 px-4 py-4 text-gray-800 text-gray-200"
>
<p class="text-md mt-4">
Hi there! I'm <span class="font-semibold">B. Amitesh</span>, a
passionate UI/UX Developer currently working at
<span class="font-semibold">Globussoft</span> in Bhilai. I
have a strong aspiration to become a Full Stack Developer and
am deeply interested in the world of IoT (Internet of Things).
</p>
<p class="text-md mt-4">
With a mastery in
<span class="font-semibold">JavaScript, CSS, React.js</span>,
and <span class="font-semibold">Python</span>, I bring a
versatile skill set to the table. My current focus is on
developing a startup website that reflects modern design
principles and user-friendly interfaces.
</p>
<p class="text-md mt-4">
I'm always open to collaboration, especially when it comes to
open-source contributions. If you're looking for a partner in
frontend development or have a project that could use a
creative touch, let's connect!
</p>
<p class="text-md mt-4">
As I continue to expand my knowledge in the MERN stack and
Data Structures & Algorithms, I remain committed to learning
and growing in this ever-evolving field.
</p>
<p class="text-md mt-4">
Ask me about anything frontend-related – I'm here to share my
knowledge and learn from others. And just for fun, let's talk
about why
<span class="font-semibold">JavaScript is amazing</span>!
</p>
</div>
</div>
</div>
</section>
</section>
<!-- CONTACT-SECTION -->
<section id="contact" class="contact-section py-10">
<h2 class="font-creamy text-5xl py-6 text-center">
Contact <span class="text-primary font-creamy">Me</span>
</h2>
<div class="flex justify-between md:px-20 px-4 md:flex-row flex-col">
<div>
<img src="./assets/images/contact.webp" alt="skills" />
</div>
<div class="md:w-[60%] w-full relative overflow-hidden">
<div class="absolute inset-0 flex justify-center">
<img
src="./assets/images/mail.gif"
class="2xl:w-[30%] xl:w-[50%] h-fit"
alt=""
/>
</div>
<form
id="contact-form"
class="bg-purple-400/20 border backdrop-blur-[2px] p-10 rounded-lg"
>
<div class="flex flex-col gap-2">
<label for="title">Title</label>
<input
type="text"
name="title"
id="title"
class="px-4 py-2 rounded-lg bg-transparent border border-white"
/>
</div>
<div class="flex flex-col gap-2">
<label for="message">Message</label>
<textarea
type="text"
class="px-4 py-2 rounded-lg bg-transparent border border-white"
rows="6"
name="message"
id="message"
></textarea>
</div>
<button
class="bg-primary text-white rounded-full px-14 py-2 mt-4"
type="submit"
>
Send
</button>
</form>
</div>
</div>
</section>
<!-- FOOTER-SECTION -->
<footer class="footer-section">
<!--===== FOOTER =====-->
<footer class="footer sm:pb-0 pb-10">
<div class="footer__container bd-container">
<h2 class="footer__title">Amitesh</h2>
<p class="footer__description">
I am B.Amitesh and this is my personal website, consult me here.
</p>
<div class="footer__social flex justify-center items-center">
<a
title="linkedin"
href="https://linkedin.com/in/bamitesh183"
target="_blank"
class="footer__link"
>
<img
src="./assets/svg/linkedin-linked-in-svgrepo-com.svg"
class="w-11 h-11"
alt=""
/>
</a>
<a
title="github"
href="https://github.com/amitesh-183"
target="_blank"
class="footer__link bg-white rounded-full p-1"
><img
src="./assets/svg/github-142-svgrepo-com.svg"
class="w-11 h-11 text-white"
alt=""
/></a>
<a
title="twitter"
href="https://twitter.com/amitesh_exe"
target="_blank"
class="footer__link rounded-full p-0.5"
>
<img src="./assets/icons/x.png" class="w-14 h-14" alt=""
/></a>
</div>
<p class="footer__copy">© 2024 Amitesh. All right reserved</p>
</div>
</footer>
</footer>
</main>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"
integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"
integrity="sha512-onMTRKJBKz8M1TnqqDuGBlowlH0ohFzMXYRNebz+yOcc5TQr/zAKsthzhuv0hiyUKEiQEQXEynnXCvNTOk50dg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="https://cdn.emailjs.com/dist/email.min.js"></script>
<!-- <script src="
https://cdn.jsdelivr.net/npm/locomotive-scroll@4.1.4/dist/locomotive-scroll.min.js
"></script> -->
<script src="./script.js"></script>
</body>
</html>