-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1006 lines (963 loc) · 44.7 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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website | Nayana Meruliya</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Anta&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<script type="text/javascript">window.$crisp = []; window.CRISP_WEBSITE_ID = "44baca0d-6219-4154-9632-143cb1a68227"; (function () { d = document; s = d.createElement("script"); s.src = "https://client.crisp.chat/l.js"; s.async = 1; d.getElementsByTagName("head")[0].appendChild(s); })();
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</head>
<body style="font-family: 'Source Code Pro', monospace;">
<header class="bg-white py-4 px-6 fixed top-0 w-full z-50">
<div class="container mx-auto px-4 md:px-10 lg:px-20 flex justify-between items-center">
<h1 class="text-2xl md:text-3xl lg:text-4xl font-bold">Nayana Meruliya</h1>
<nav class="hidden md:block">
<ul class="flex space-x-6">
<li><a href="#home" class="hover:underline">HOME</a></li>
<li><a href="#projects" class="hover:underline">PROJECTS</a></li>
<li><a href="#testimonials" class="hover:underline">TESTIMONIALS</a></li>
<li><a href="#contact" class="hover:underline">CONTACT</a></li>
<li><a href="#faqs" class="hover:underline">FAQS</a></li>
<li><a href="#about" class="hover:underline">ABOUT</a></li>
<li><a href="#library" class="hover:underline">LIBRARY</a></li>
</ul>
</nav>
<!-- Mobile Menu -->
<div class="md:hidden">
<button id="mobile-menu-toggle" class="focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
</div>
</header>
<!-- Mobile Menu -->
<div id="mobile-menu" class="md:hidden fixed inset-0 bg-gray-800 bg-opacity-100 z-40 hidden">
<div class="flex justify-end p-4">
<button id="mobile-menu-close" class="focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12">
</path>
</svg>
</button>
</div>
<nav class="text-white text-center mt-10">
<ul class="space-y-4">
<li><a href="#home" class="block py-2">HOME</a></li>
<li><a href="#projects" class="block py-2">PROJECTS</a></li>
<li><a href="#testimonials" class="block py-2">TESTIMONIALS</a></li>
<li><a href="#contact" class="block py-2">CONTACT</a></li>
<li><a href="#faqs" class="block py-2">FAQS</a></li>
<li><a href="#about" class="block py-2">ABOUT NAYANA</a></li>
<li><a href="#library" class="block py-2">LIBRARY</a></li>
</ul>
</nav>
</div>
<main class="mt-20 bg-gray-100" id="home">
<div class="container mx-auto px-4 md:px-10 lg:px-20">
<section class="flex flex-col md:flex-row justify-between items-center pt-8 pb-8">
<div class="pr-0 md:pr-6">
<p class="text-3xl md:text-4xl lg:text-5xl font-bold mb-2">Hello There!</p>
<p class="text-2xl md:text-3xl lg:text-4xl font-bold">I am Nayana Meruliya.</p>
<p class="mt-6 text-lg md:text-xl lg:text-2xl">I am Full Stack Developer.</p>
<p class="mt-6 text-lg md:text-xl lg:text-2xl text-justify">
I work with Angular, Node JS, Lit Element, Wordpress, Shopify & Core PHP. I excel in delivering
concise, readable, reusable, scalable and optimized code solutions tailored to client needs. I
possess a robust professional background, encompassing 8 years of experience.
</p>
</div>
<div class="pr-0 md:pr-6 flex flex-col items-center">
<img src="IMG-20240228-WA0003.jpeg" alt="Nayana Meruliya" class="h-full rounded-full" />
<div class="flex flex-row">
<button onclick="$crisp.push(['do', 'chat:open'])"
class="mt-8 mr-8 px-6 py-2 bg-black text-white rounded-md text-lg md:text-xl lg:text-2xl shadow-lg">
Hire Me
</button>
<a target="_blank" href="https://www.upwork.com/freelancers/~01284f8ea50e52268e">
<button
class="mt-8 px-6 py-2 bg-black text-white rounded-md text-lg md:text-xl lg:text-2xl shadow-lg">
Upwork Profile
</button>
</a>
</div>
</div>
<!-- <div class="md:w-1/2 mt-8 md:mt-0">
<div class="relative" style="padding-top: 56.25%;">
<iframe class="absolute top-0 left-0 w-full h-full"
src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen></iframe>
</div>
</div> -->
</section>
</div>
</main>
<main class="mt-5 bg-white-100" id="projects">
<div class="container mx-auto px-4 md:px-10 lg:px-20">
<section class="py-12 bg-white-100">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold mb-8">Projects</h2>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-4 gap-8">
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://astrocaller.com/" target="_blank" rel="noopener noreferrer">
<img src="astro-caller.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://astrocaller.com/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Astro Caller">Astro Caller</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="http://www.thepanchayati.com/" target="_blank" rel="noopener noreferrer">
<img src="panchayatiraj.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="http://www.thepanchayati.com/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Panchayatiraj">Panchayatiraj</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://tallyfy.com/" target="_blank" rel="noopener noreferrer">
<img src="tallyfy.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://tallyfy.com/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Tallyfy">Tallyfy</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://admin.labornetapp.com/ln-admin/login" target="_blank"
rel="noopener noreferrer">
<img src="labornetapp.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://admin.labornetapp.com/ln-admin/login" target="_blank"
rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Labornet App">Labornet App</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://acme-couriers.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="acme.png" alt="Project 1" class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://acme-couriers.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="ACME">ACME</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://pblcentral.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="PBLCentral-Tracking.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://pblcentral.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="PBLCentral Tracking">PBLCentral Tracking</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://pnzlogistics.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="P-Z-Logistics.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://pnzlogistics.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="P&Z Logistics">P&Z Logistics</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://cloud-club-web.web.app/index.html" target="_blank"
rel="noopener noreferrer">
<img src="Cloud-Club.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://cloud-club-web.web.app/index.html" target="_blank"
rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Cloud Club">Cloud Club</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://www.heavenlybeds.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="HeavenlyBeds.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://www.heavenlybeds.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Heavenly Beds">Heavenly Beds</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://www.barronbeds.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="BarronBeds.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://www.barronbeds.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Barron Beds">Barron Beds</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://www.snoozynights.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="snoozynights.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://www.snoozynights.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Snoozy Nights Beds">Snoozy Nights Beds</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://www.bedroomking.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="Bedroomking.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://www.bedroomking.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Bedroom King Beds">Bedroom King Beds</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://techniice.com/" target="_blank" rel="noopener noreferrer">
<img src="Techni-Ice.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://techniice.com/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Techni Ice">Techni Ice</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://theluxurybedcompany.com/" target="_blank" rel="noopener noreferrer">
<img src="The-Luxury-Bed-Company.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://theluxurybedcompany.com/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Luxury Bed Company UK">Luxury Bed Company
UK</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://theluxurybedcompany.us/" target="_blank" rel="noopener noreferrer">
<img src="The-Luxury-Bed-Company-US.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://theluxurybedcompany.us/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Luxury Bed Company US">Luxury Bed Company
US</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://polytastic.com/" target="_blank" rel="noopener noreferrer">
<img src="Polytastic.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://polytastic.com/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Polytastic">Polytastic</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://pblcentral.co.uk/admin/" target="_blank" rel="noopener noreferrer">
<img src="PBL-UK.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://pblcentral.co.uk/admin/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="PBL Admin - UK">PBL Admin - UK</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://us.pblcentral.co.uk/admin/" target="_blank" rel="noopener noreferrer">
<img src="PBL-Admin-US.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://us.pblcentral.co.uk/admin/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="PBL Admin - UK">PBL Admin - US</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://acme-couriers.co.uk/admin/" target="_blank" rel="noopener noreferrer">
<img src="Acme-Couriers-Admin.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://acme-couriers.co.uk/admin/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="Acme Couriers Admin">Acme Couriers Admin</span>
</a>
</div>
</div>
<div class="group">
<div class="relative overflow-hidden bg-gray-200 rounded-lg shadow-lg hover:shadow-2xl transition duration-300 transform hover:scale-105"
style="aspect-ratio: 16/12;">
<a href="https://apps.pnzlogistics.co.uk/" target="_blank" rel="noopener noreferrer">
<img src="P-Z-Logistics-Admin.png" alt="Project 1"
class="absolute inset-0 w-full h-full object-cover">
<div
class="absolute inset-0 bg-black opacity-0 hover:opacity-50 transition duration-300">
</div>
</a>
</div>
<div class="text-center py-2 truncate text-ellipsis">
<a href="https://apps.pnzlogistics.co.uk/" target="_blank" rel="noopener noreferrer">
<span class="text-2xl font-bold" title="P&Z Logistics Admin">P&Z Logistics Admin</span>
</a>
</div>
</div>
</div>
</section>
</div>
</main>
<main class="mt-5 bg-gray-100" id="testimonials">
<div class="container mx-auto px-4 md:px-10 lg:px-20">
<section class="py-12 bg-gray-100">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold mb-8">Here's What My Clients Say</h2>
</div>
<div class="mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-8">
<div class="shadow-lg p-4 rounded-lg bg-white">
<p class="text-lg mb-4">
"They understood the assignment and executed perfectly - even had
the foresight to add things I didn't think of. They worked so fast the task was one a
day before expected. We will be working again"
</p>
<div class="flex justify-between">
<h3 class="font-semibold">Nathan Otto</h3>
<a target="_blank" href="https://www.upwork.com/freelancers/~01284f8ea50e52268e">
<h3 class="font-semibold">
Upwork Client
</h3>
</a>
</div>
</div>
<div class="shadow-lg p-4 rounded-lg bg-white">
<p class="text-lg mb-4">
"You'e got a collaborative way of working with clients and I really appreciate that. I
also admire your level of patience. At the end, you delivered a good job. I recommend!"
</p>
<div class="flex justify-between">
<h3 class="font-semibold">Victor Ezike</h3>
<a target="_blank" href="https://www.upwork.com/freelancers/~01284f8ea50e52268e">
<h3 class="font-semibold">
Upwork Client
</h3>
</a>
</div>
</div>
</div>
</div>
</section>
</div>
</main>
<main class="bg-white-100" id="contact">
<div class="container mx-auto px-4 md:px-10 lg:px-20">
<section class="py-12 bg-white-100 p-8">
<div class="container mx-auto text-center">
<div class="flex flex-col md:flex-row justify-center md:justify-between items-center">
<div class="flex flex-col">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold mb-4 md:mb-0">Have Ideas?</h2>
<h2 class="text-2xl md:text-3xl lg:text-4xl font-bold mb-4 md:mb-0">
Let's Make Them Happen Together!
</h2>
</div>
<div class="flex flex-col md:flex-row">
<a href="mailto:[email protected]" class="mb-2 md:mb-0 md:mr-4">
<button class="px-6 py-2 bg-black text-white rounded-md text-lg md:text-xl lg:text-2xl">
Email Me
</button>
</a>
<button onclick="$crisp.push(['do', 'chat:open'])"
class="px-6 py-2 bg-black text-white rounded-md text-lg md:text-xl lg:text-2xl">
Let's Chat
</button>
</div>
</div>
</div>
</section>
</div>
</main>
<main class="mt-5 bg-gray-100" id="faqs">
<div class="container mx-auto px-4 md:px-10 lg:px-20">
<section class="py-12 bg-gray-100">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold mb-8">FAQs</h2>
</div>
<div class="mx-auto">
<!-- Accordion Item 1 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Are you available for full-time freelance or contract work?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
Yes, I am available for full-time freelance as well as contract work.
</div>
</div>
<!-- Accordion Item 2 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Do you work remotely, or are you open to relocation for job opportunities?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
While I do prefer remote work for its flexibility and efficiency, I am open to
considering relocation for the right opportunity, depending on the location and the
nature of the role.
</div>
</div>
<!-- Accordion Item 3 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
What is your preferred method of communication for collaboration on projects?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
I am accustomed to using a variety of collaboration tools such as Skype, Slack, Microsoft
Teams, Jira, and Trello to ensure seamless communication and coordination within teams.
</div>
</div>
<!-- Accordion Item 4 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Are you experienced in working within Agile or Scrum development methodologies?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
Yes, I have extensive experience working within Agile and Scrum development methodologies.
</div>
</div>
<!-- Accordion Item 5 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Do you have experience collaborating with cross-functional teams, such as designers,
product managers, and other developers?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
Absolutely, I have considerable experience collaborating with cross-functional teams
throughout my career. Working closely with designers, product managers, and fellow
developers has been a cornerstone of my approach to delivering successful projects.
</div>
</div>
<!-- Accordion Item 6 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Are you comfortable working with clients directly, or do you prefer working through
project managers?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
I am absolutely comfortable working directly with clients.
</div>
</div>
<!-- Accordion Item 7 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Do you have experience in mentoring or leading junior developers?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
Yes, I have significant experience in mentoring and leading junior developers. I find great
satisfaction in sharing knowledge, providing guidance, and helping others grow in their
careers.
</div>
</div>
<!-- Accordion Item 8 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Are you open to learning new technologies or frameworks as required by project needs?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
Absolutely. I firmly believe in the importance of staying adaptable and continuously
expanding my skill set to meet evolving project requirements. In my previous role as an
Angular Developer, I embraced the opportunity to learn new technologies such as Lit Element
and Cypress when the project demanded it.
</div>
</div>
<!-- Accordion Item 9 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
What is your approach to troubleshooting and debugging code issues?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
My approach is systematic; I review code, use debugging tools, and test potential solutions
methodically. I prioritize clear documentation and efficient collaboration to resolve issues
promptly while maintaining code quality.
</div>
</div>
<!-- Accordion Item 10 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Do you have experience with version control systems?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
Yes, I have extensive experience with version control systems such as Git. I am also
familiar with popular platforms like GitHub, GitLab, and Bitbucket for facilitating
collaborative development workflows.
</div>
</div>
<!-- Accordion Item 11 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
Can you provide examples of your previous work?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
Certainly! You can find examples of my previous projects in the PROJECTS section of this
website.
</div>
</div>
<!-- Accordion Item 12 -->
<div x-data="{ isOpen: false }" class="border-b bg-white mb-2 shadow-lg hover:shadow-2xl">
<button @click="isOpen = !isOpen"
class="w-full text-left px-4 py-3 flex justify-between items-center">
<span class="text-lg font-semibold">
How do you stay updated on the latest web development trends?
</span>
<svg x-show="!isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M5 15l7-7 7 7"></path>
</svg>
<svg x-show="isOpen" class="w-4 h-4" viewBox="0 0 24 24">
<path fill="currentColor" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div x-show="isOpen" class="px-4 py-3">
To stay informed about the latest web development trends, I allocate dedicated time for
learning. During these scheduled sessions, I engage with various learning resources such as
instructional videos on YouTube and informative articles. This proactive approach allows me
to stay current with evolving technologies and industry developments, ensuring that my
skills remain relevant and up-to-date.
</div>
</div>
</div>
</section>
</div>
</main>
<main class="mt-5 bg-white-100" id="about">
<div class="container mx-auto px-4 md:px-10 lg:px-20">
<section class="py-12 bg-white-100">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold mb-8">About Nayana</h2>
</div>
<div class="mx-auto">
<div class="flex flex-wrap gap-4">
<div class="w-full bg-yellow-100 rounded-lg p-4 shadow-lg text-justify">
After embarking on her journey post-graduation, she delved into the
realm of software development, honing her skills for a remarkable <span class="font-bold">5
years</span> within the
confines of a dynamic software company. As a dedicated full stack developer, she
immersed herself in a myriad of technologies, from <span class="font-bold">Angular</span> to
<span class="font-bold">Node JS</span>, mastering
platforms like Wordpress and Magento with finesse. Her expertise extended beyond coding;
she adeptly managed servers, facilitated project deployments, led teams, and fostered
seamless client communication.
</div>
<div class="w-full bg-blue-200 rounded-lg p-4 shadow-lg text-justify">
After half a decade of enriching employment, she ventured into the realm of <span
class="font-bold">freelance and
contractual work</span>, embracing remote collaboration for over <span
class="font-bold">3 years</span>. Notably, she
contributed her talents to esteemed entities such as <span class="font-bold">Dell
Technologies</span>, where she seamlessly
integrated into agile methodologies as a contractor Angular developer.
</div>
<div class="w-full bg-pink-200 rounded-lg p-4 shadow-lg text-justify">
Beyond her professional prowess, she possesses an array of personal strengths. <span
class="font-bold">Discipline</span>, <span class="font-bold">organization</span>
, and a penchant for cultivating a harmonious atmosphere characterize her
demeanor. A <span class="font-bold">calm and compassionate listener</span>, she excels in
<span class="font-bold">effective communication</span>,
embodying an <span class="font-bold">introverted yet warm disposition</span>.
</div>
<div class="w-full bg-green-200 rounded-lg p-4 shadow-lg text-justify">
Outside the realm of technology, she finds solace in the pages of <span
class="font-bold">self-help books</span> and the
nurturing embrace of her <span class="font-bold">indoor garden</span>. Methodically <span
class="font-bold">scheduling her weeks</span> with precision,
she orchestrates her life with intention and purpose.
</div>
<div class="w-full bg-purple-200 rounded-lg p-4 shadow-lg text-justify">
During her leisure moments, she indulges in the simple pleasures of <span
class="font-bold">nurturing her plants</span>,
delving into enriching literature, and immersing herself in <span class="font-bold">nature
documentaries</span>. Engaging
with loved ones and embarking on <span class="font-bold">spontaneous trips</span> to natural
havens with her husband and
family rejuvenates her spirit, adding vibrant hues to the canvas of her life.
</div>
</div>
</div>
</section>
</div>
</main>
<main class="mt-5 bg-gray-100" id="library">
<div class="container mx-auto px-4 md:px-10 lg:px-20">
<section class="py-12 bg-gray-100">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold mb-8">My Personal Development Library</h2>
</div>
<div class="mx-auto">
<div class="container mx-auto grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-4 gap-4">
<div class="flex items-center bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-4 py-2">
<img src="library-images/dopamine-detox.jpg" alt="DOPAMINE DETOX"
class="w-20 h-20 object-cover rounded-full">
</div>
<div class="px-4 py-2">
<h2 class="text-xl text-gray-900 font-semibold mt-2">DOPAMINE DETOX</h2>
<p class="text-gray-700 font-semibold">Thibaut Meurisse</p>
</div>
</div>
<div class="flex items-center bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-4 py-2">
<img src="library-images/immediate-action.jpg" alt="Immediate Action"
class="w-20 h-20 object-cover rounded-full">
</div>
<div class="px-4 py-2">
<h2 class="text-xl text-gray-900 font-semibold mt-2">Immediate Action</h2>
<p class="text-gray-700 font-semibold">Thibaut Meurisse</p>
</div>
</div>
<div class="flex items-center bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-4 py-2">
<img src="library-images/powerful-focus.jpg" alt="Powerful Focus"
class="w-20 h-20 object-cover rounded-full">
</div>
<div class="px-4 py-2">
<h2 class="text-xl text-gray-900 font-semibold mt-2">Powerful Focus</h2>
<p class="text-gray-700 font-semibold">Thibaut Meurisse</p>
</div>
</div>
<div class="flex items-center bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-4 py-2">
<img src="library-images/strategic-mindset.jpg" alt="Strategic Mindset"
class="w-20 h-20 object-cover rounded-full">
</div>
<div class="px-4 py-2">
<h2 class="text-xl text-gray-900 font-semibold mt-2">Strategic Mindset</h2>
<p class="text-gray-700 font-semibold">Thibaut Meurisse</p>
</div>
</div>
<div class="flex items-center bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-4 py-2">
<img src="library-images/master-your-emotions.jpg" alt="Master Your Emotions"
class="w-20 h-20 object-cover rounded-full">
</div>
<div class="px-4 py-2">
<h2 class="text-xl text-gray-900 font-semibold mt-2">Master Your Emotions</h2>
<p class="text-gray-700 font-semibold">Thibaut Meurisse</p>
</div>
</div>
<div class="flex items-center bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-4 py-2">
<img src="library-images/master-your-motivation.jpg" alt="Master Your Motivation"
class="w-20 h-20 object-cover rounded-full">
</div>
<div class="px-4 py-2">
<h2 class="text-xl text-gray-900 font-semibold mt-2">Master Your Motivation</h2>
<p class="text-gray-700 font-semibold">Thibaut Meurisse</p>
</div>
</div>
<div class="flex items-center bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-4 py-2">
<img src="library-images/master-your-focus.jpg" alt="Master Your Focus"
class="w-20 h-20 object-cover rounded-full">
</div>
<div class="px-4 py-2">
<h2 class="text-xl text-gray-900 font-semibold mt-2">Master Your Focus</h2>
<p class="text-gray-700 font-semibold">Thibaut Meurisse</p>
</div>
</div>
</div>
</div>
</section>
</div>
</main>
<footer class="bg-white-100 py-4 sm:px-8 md:px-10 lg:px-28 flex flex-col sm:flex-row justify-between items-center">
<div class="text-left">
© 2024 Nayana Meruliya.
</div>
<div class="flex items-center space-x-4">
<span class="text-left">
Featured on:
</span>
<a target="_blank" href="https://www.upwork.com/freelancers/~01284f8ea50e52268e">
<img src="upwork-logo.png" alt="Upwork Profile" class="w-20">
</a>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuToggle = document.getElementById('mobile-menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
const mobileMenuClose = document.getElementById('mobile-menu-close');
const mobileMenuItems = document.querySelectorAll('nav ul li a');
const headerHeight = document.querySelector('header').offsetHeight;
mobileMenuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
mobileMenuClose.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
});
// Close mobile menu when any menu item is clicked
mobileMenuItems.forEach(item => {
item.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
});
});
mobileMenuItems.forEach(item => {
item.addEventListener('click', event => {
event.preventDefault();
const targetId = event.target.getAttribute('href').substring(1);
const targetSection = document.getElementById(targetId);
const offsetPosition = targetSection.offsetTop - headerHeight;
window.scrollTo({
top: offsetPosition,
behavior: 'smooth'
});