-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
781 lines (778 loc) · 29.5 KB
/
Copy pathindex.html
File metadata and controls
781 lines (778 loc) · 29.5 KB
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
<!-- @format -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nike</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./public/index.css" />
<script src="public/index.js"></script>
</head>
<body>
<main class="relative">
<header
class="padding-x py-8 absolute z-10 w-full max-lg:fixed max-lg:bg-white"
>
<nav class="flex justify-between items-center max-container">
<a href="/" class="max-lg:z-20">
<img
src="public/assets/images/header-logo.svg"
alt="Logo"
width="130"
height="29"
/>
</a>
<ul
id="menu"
class="flex-1 flex justify-center items-center gap-16 max-lg:flex-col max-lg:fixed max-lg:z-10 max-lg:bg-white max-lg:w-screen max-lg:h-full max-lg:top-1/2 max-lg:translate-y-[-50%] max-lg:-left-full transition-left duration-500"
>
<li>
<a
href="#home"
class="font-montserrat leading-normal text-lg text-slate-gray"
>Home</a
>
</li>
<li>
<a
href="#aboutUs"
class="font-montserrat leading-normal text-lg text-slate-gray"
>About Us</a
>
</li>
<li>
<a
href="#products"
class="font-montserrat leading-normal text-lg text-slate-gray"
>Products</a
>
</li>
<li>
<a
href="#contactUs"
class="font-montserrat leading-normal text-lg text-slate-gray"
>Contact Us</a
>
</li>
</ul>
<div
class="flex gap-2 text-lg leading-normal font-medium font-montserrat max-lg:hidden wide:mr-24"
>
<a href="/">Sign in</a><span>/</span><a href="/">Explore now</a>
</div>
<div
class="hidden max-lg:block max-lg:z-10"
id="menuBtn"
onclick="toggleMenu(this)"
>
<img
src="public/assets/icons/hamburger.svg"
alt="Hamburger"
height="25"
width="25"
class="transition-all duration-500"
/>
</div>
</nav>
</header>
<section class="xl:padding-l wide:padding-r padding-b">
<section
id="home"
class="w-full flex xl:flex-row flex-col justify-center min-h-screen gap-10 max-container"
>
<div
class="relative xl:w-2/5 flex flex-col justify-center items-start w-full max-xl:padding-x pt-28"
>
<p class="text-xl font-montserrat text-coral-red">
Our Summer Collection
</p>
<h1
class="mt-10 font-palanquin text-8xl max-sm:text-[72px] max-sm:leading-[82px] font-bold"
>
<span
class="xl:bg-white xl:whitespace-nowrap relative z-10 max-lg:z-0 pr-10"
>The New Arrival</span
>
<br />
<span class="text-coral-red inline-block mt-3">Nike</span> Shoes
</h1>
<p
class="font-montserrat text-slate-gray text-lg leading-8 mt-6 mb-14 sm:max-w-sm"
>
Discover stylish Nike arrivals, quality comfort, and innovation
for your active life.
</p>
<button
class="flex justify-center items-center gap-2 px-7 py-4 border font-montserrat text-lg leading-none bg-coral-red rounded-full text-white border-coral-red"
>
Shop Now
<img
src="public/assets/icons/arrow-right.svg"
alt="arrow right icon"
class="ml-2 rounded-full w-5 h-5"
/>
</button>
<div
class="flex justify-start items-start flex-wrap w-full mt-20 gap-16"
>
<div>
<p class="text-4xl font-palanquin font-bold">1k+</p>
<p class="leading-7 font-montserrat text-slate-gray">Brands</p>
</div>
<div>
<p class="text-4xl font-palanquin font-bold">500+</p>
<p class="leading-7 font-montserrat text-slate-gray">Shops</p>
</div>
<div>
<p class="text-4xl font-palanquin font-bold">250k+</p>
<p class="leading-7 font-montserrat text-slate-gray">
Customers
</p>
</div>
</div>
</div>
<div
class="relative flex-1 flex justify-center items-center xl:min-h-screen max-xl:py-40 bg-primary bg-hero bg-cover bg-center"
>
<img
id="bigShoeImage"
src="public/assets/images/big-shoe1.png"
alt="shoe collection"
width="610"
height="500"
class="object-contain relative z-10 max-lg:z-0"
/>
<div
class="flex sm:gap-6 gap-4 absolute -bottom-[5%] sm:left-[10%] max-sm:px-6"
>
<div>
<div
onclick="changeBigShoeImage(this)"
class="border-2 rounded-xl border-coral-red cursor-pointer max-sm:flex-1"
>
<div
class="flex justify-center items-center bg-card bg-center bg-cover sm:w-40 sm:h-40 rounded-xl max-sm:p-4"
>
<img
src="public/assets/images/big-shoe1.png"
alt="big show 1"
width="127"
height="103"
class="object-contain"
/>
</div>
</div>
</div>
<div>
<div
onclick="changeBigShoeImage(this)"
class="border-2 rounded-xl border-transparent cursor-pointer max-sm:flex-1"
>
<div
class="flex justify-center items-center bg-card bg-center bg-cover sm:w-40 sm:h-40 rounded-xl max-sm:p-4"
>
<img
src="public/assets/images/big-shoe2.png"
alt="big show 2"
width="127"
height="103"
class="object-contain"
/>
</div>
</div>
</div>
<div>
<div
onclick="changeBigShoeImage(this)"
class="border-2 rounded-xl border-transparent cursor-pointer max-sm:flex-1"
>
<div
class="flex justify-center items-center bg-card bg-center bg-cover sm:w-40 sm:h-40 rounded-xl max-sm:p-4"
>
<img
src="public/assets/images/big-shoe3.png"
alt="big show 2"
width="127"
height="103"
class="object-contain"
/>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="padding">
<section id="products" class="max-container max-sm:mt-12">
<div class="flex flex-col justify-start gap-5">
<h2 class="text-4xl font-palanquin font-bold">
Our <span class="text-coral-red">Popular</span> Products
</h2>
<p class="lg:max-w-lg mt-3 font-montserrat text-slate-gray">
Experience top-notch quality and style with our sought-after
selections. Discover a world of comfort, design, and value.
</p>
</div>
<div
class="mt-16 grid lg:grid-cols-4 md:grid-cols-3 sm:grid-cols-2 grid-cols-1 sm:gap-4 gap-14"
>
<div class="flex flex-1 flex-col w-full max-sm:w-full">
<img
src="public/assets/images/shoe4.svg"
alt="Nike Air Jordan-01"
class="w-[280px] h-[280px]"
/>
<div class="mt-8 flex justify-start gap-2.5">
<img
src="public/assets/icons/star.svg"
alt="rating"
width="24"
height="24"
/>
<p
class="font-montserrat text-xl leading-normal text-slate-gray"
>
4.5
</p>
</div>
<h3
class="mt-2 text-3xl leading-normal font-semibold font-palanquin"
>
Nike Air Jordan-01
</h3>
<p
class="mt-2 font-semibold font-montserrat text-coral-red text-2xl leading-normal"
>
$200.20
</p>
</div>
<div class="flex flex-1 flex-col w-full max-sm:w-full">
<img
src="public/assets/images/shoe5.svg"
alt="Nike Air Jordan-10"
class="w-[280px] h-[280px]"
/>
<div class="mt-8 flex justify-start gap-2.5">
<img
src="public/assets/icons/star.svg"
alt="rating"
width="24"
height="24"
/>
<p
class="font-montserrat text-xl leading-normal text-slate-gray"
>
4.5
</p>
</div>
<h3
class="mt-2 text-3xl leading-normal font-semibold font-palanquin"
>
Nike Air Jordan-10
</h3>
<p
class="mt-2 font-semibold font-montserrat text-coral-red text-2xl leading-normal"
>
$220.50
</p>
</div>
<div class="flex flex-1 flex-col w-full max-sm:w-full">
<img
src="public/assets/images/shoe6.svg"
alt="Nike Air Jordan-100"
class="w-[280px] h-[280px]"
/>
<div class="mt-8 flex justify-start gap-2.5">
<img
src="public/assets/icons/star.svg"
alt="rating"
width="24"
height="24"
/>
<p
class="font-montserrat text-xl leading-normal text-slate-gray"
>
4.5
</p>
</div>
<h3
class="mt-2 text-3xl leading-normal font-semibold font-palanquin"
>
Nike Air Jordan-100
</h3>
<p
class="mt-2 font-semibold font-montserrat text-coral-red text-2xl leading-normal"
>
$220.20
</p>
</div>
<div class="flex flex-1 flex-col w-full max-sm:w-full">
<img
src="public/assets/images/shoe7.svg"
alt="Nike Air Jordan-20"
class="w-[280px] h-[280px]"
/>
<div class="mt-8 flex justify-start gap-2.5">
<img
src="public/assets/icons/star.svg"
alt="rating"
width="24"
height="24"
/>
<p
class="font-montserrat text-xl leading-normal text-slate-gray"
>
4.5
</p>
</div>
<h3
class="mt-2 text-3xl leading-normal font-semibold font-palanquin"
>
Nike Air Jordan-20
</h3>
<p
class="mt-2 font-semibold font-montserrat text-coral-red text-2xl leading-normal"
>
$210.20
</p>
</div>
</div>
</section>
</section>
<section class="padding">
<section
id="aboutUs"
class="flex justify-between items-center max-lg:flex-col gap-10 q-full max-container"
>
<div class="flex flex-1 flex-col">
<h2
class="font-palanquin text-4xl capitalize font-bold lg:max-w-lg"
>
We provide you
<span class="text-coral-red">Super</span>
<span class="text-coral-red">Quality</span> Shoes
</h2>
<p class="mt-4 lg:max-w-lg info-text">
Ensuring premium comfort and style, our meticulously crafted
footwear is designed to elevate your experience, prividing you
with unmatched quality, innovation, and a touch of elegance.
</p>
<p class="mt-6 lg:max-w-lg info-text">
Our dedication to detail and excellence ensures your satisfaction.
</p>
<div class="mt-11">
<button
class="flex justify-center items-center gap-2 px-7 py-4 border font-montserrat text-lg leading-none bg-coral-red rounded-full text-white border-coral-red"
>
View Details
</button>
</div>
</div>
<div class="flex-1 flex justify-center items-center">
<img
src="public/assets/images/shoe8.svg"
alt="shoe8"
width="570"
height="522"
class="object-contain"
/>
</div>
</section>
</section>
<section class="padding-x py-10">
<section class="max-container flex justify-center flex-wrap gap-9">
<div
class="flex-1 sm:w-[350px] sm:min-w-[350px] w-full rounded-[20px] shadow-3xl px-10 py-16"
>
<div
class="w-11 h-11 flex justify-center items-center bg-coral-red rounded-full"
>
<img
src="public/assets/icons/truck-fast.svg"
alt="Free Shipping"
width="24"
height="24"
/>
</div>
<h3 class="mt-5 font-palanquin text-3xl leading-normal font-bold">
Free Shipping
</h3>
<p
class="mt-3 break-words font-montserrat text-lg leading-normal text-slate-gray"
>
Enjoy seamless shopping with our complimentary shipping service.
</p>
</div>
<div
class="flex-1 sm:w-[350px] sm:min-w-[350px] w-full rounded-[20px] shadow-3xl px-10 py-16"
>
<div
class="w-11 h-11 flex justify-center items-center bg-coral-red rounded-full"
>
<img
src="public/assets/icons/shield-tick.svg"
alt="Secure Payment"
width="24"
height="24"
/>
</div>
<h3 class="mt-5 font-palanquin text-3xl leading-normal font-bold">
Secure Payment
</h3>
<p
class="mt-3 break-words font-montserrat text-lg leading-normal text-slate-gray"
>
Experience worry-free transaction with our sercure payment
options.
</p>
</div>
<div
class="flex-1 sm:w-[350px] sm:min-w-[350px] w-full rounded-[20px] shadow-3xl px-10 py-16"
>
<div
class="w-11 h-11 flex justify-center items-center bg-coral-red rounded-full"
>
<img
src="public/assets/icons/support.svg"
alt="Love to help you"
width="24"
height="24"
/>
</div>
<h3 class="mt-5 font-palanquin text-3xl leading-normal font-bold">
Love to help you
</h3>
<p
class="mt-3 break-words font-montserrat text-lg leading-normal text-slate-gray"
>
Our dedicated team is here to assist you every step of the way.
</p>
</div>
</section>
</section>
<section class="padding">
<section
class="flex justify-center items-center max-xl:flex-col-reverse gap-10 max-container"
>
<div class="flex-1">
<img
src="public/assets/images/offer.svg"
alt="offer"
width="773"
height="687"
class="object-contain w-full"
/>
</div>
<div class="flex flex-1 flex-col">
<h2
class="font-palanquin text-4xl capitalize font-bold lg:max-w-lg"
>
<span class="text-coral-red">Special</span>
Offer
</h2>
<p class="mt-4 lg:max-w-lg info-text">
Emberk on a shopping journey that redefines your experience with
unbeatable deals. From premier selections to incredible savings,
we offer unparalleled value that sets us apart.
</p>
<p class="mt-6 lg:max-w-lg info-text">
Navigate a realm of possibilities designed to fulfill your unique
desires, surpassing the loftlest expectations. Your journey with
us in nothing short of exceptional.
</p>
<div class="mt-11 flex flex-wrap gap-4">
<button
class="flex justify-center items-center gap-2 px-7 py-4 border font-montserrat text-lg leading-none bg-coral-red rounded-full text-white border-coral-red"
>
Shop Now
<img
src="public/assets/icons/arrow-right.svg"
alt="arrow right icon"
class="ml-2 rounded-full w-5 h-5"
/>
</button>
<button
class="bg-white border border-slate-gray px-7 py-4 font-montserrat text-lg leading-none rounded-full text-slate-gray"
>
Learn More
</button>
</div>
</div>
</section>
</section>
<section class="bg-pale-blue padding">
<section class="max-container">
<h3 class="font-palanquin text-center text-4xl font-bold">
What Our
<span class="text-coral-red">Customers</span>
Say?
</h3>
<p class="info-text m-auto mt-4 max-w-lg text-center">
Hear genuine stories from our satisfied customers about their
exceptional experiences with us.
</p>
<div
class="mt-12 flex flex-1 justify-evenly items-center max-lg:flex-col gap-14"
>
<div class="group flex justify-center items-center flex-col">
<div
class="grid items-end w-[120px] h-[180px] rounded-b-full overflow-hidden relative transition-transform duration-300 ease-in-out group-hover:scale-110"
>
<img
src="public/assets/images/customer1-background.jpg"
alt="customer background"
class="rounded-full object-cover w-[120px] h-[120px]"
/>
<img
src="public/assets/images/customer1.png"
alt="customer"
class="object-cover w-[120px] h-[120px] absolute scale-110 transition-transform duration-300 ease-in-out group-hover:-translate-y-[7px]"
/>
</div>
<p class="mt-6 max-w-sm text-center info-text">
The attention to detail and the quality of the product exceeded
my expectations. Highly recommended.
</p>
<div class="mt-3 flex justify-center items-center gap-2.5">
<img
src="public/assets/icons/star.svg"
width="24"
height="24"
class="object-contain m-0"
/>
<p class="text-xl font-montserrat text-slate-gray">4.5</p>
</div>
<h3 class="mt-1 font-palanquin text-3xl text-center font-bold">
Moric Brown
</h3>
</div>
<div class="group flex justify-center items-center flex-col">
<div
class="grid items-end w-[120px] h-[180px] rounded-b-full overflow-hidden relative transition-transform duration-300 ease-in-out group-hover:scale-110"
>
<img
src="public/assets/images/customer2-background.jpg"
alt="customer background"
class="rounded-full object-cover w-[120px] h-[120px]"
/>
<img
src="public/assets/images/customer2.png"
alt="customer"
class="object-cover w-[120px] h-[120px] absolute scale-110 transition-transform duration-300 ease-in-out group-hover:-translate-y-[7px]"
/>
</div>
<p class="mt-6 max-w-sm text-center info-text">
The product not only met but exceeded my expectations. I'll
definitely be returning customer!
</p>
<div class="mt-3 flex justify-center items-center gap-2.5">
<img
src="public/assets/icons/star.svg"
width="24"
height="24"
class="object-contain m-0"
/>
<p class="text-xl font-montserrat text-slate-gray">4.5</p>
</div>
<h3 class="mt-1 font-palanquin text-3xl text-center font-bold">
Lota Mongeskar
</h3>
</div>
</div>
</section>
</section>
<section class="padding-x sm:py-32 py-16 w-full">
<section
class="max-container flex justify-between items-center max-lg:flex-col gap-10"
id="contactUs"
>
<h3
class="text-4xl leading-[68px] lg:max-w-md font-palanquin font-bold"
>
Sign Up for <span class="text-coral-red">Updates</span> & Newsletter
</h3>
<div
class="lg:max-w-[40%] w-full flex items-center max-sm:flex-col gap-5 p-2.5 sm:border sm:border-slate-gray rounded-full"
>
<input type="text" placeholder="subscribe@nike.com" class="input" />
<div class="flex max-sm:justify-end items-center max-sm:w-full">
<button
class="flex justify-center items-center gap-2 px-7 py-4 border font-montserrat text-lg leading-none bg-coral-red rounded-full text-white border-coral-red w-full"
>
Sign Up
</button>
</div>
</div>
</section>
</section>
<section class="bg-black padding-x padding-t pb-8">
<footer class="max-container">
<div
class="flex justify-between items-start gap-20 flex-wrap max-lg:flex-col"
>
<div class="flex flex-col items-start">
<a href="/">
<img
src="public/assets/images/footer-logo.svg"
width="150"
height="46"
/>
<p
class="mt-6 text-base leading-7 font-montserrat text-white-400 sm:max-w-sm"
>
Get shoes ready for the new term at your nearest Nike store.
Find your perfect Size In Store. Get Rewards
</p>
<div class="flex items-center gap-5 mt-8">
<div
class="flex justify-center items-center w-12 h-12 bg-white rounded-full"
>
<img
src="public/assets/icons/facebook.svg"
alt="facebook"
width="24"
height="24"
/>
</div>
<div
class="flex justify-center items-center w-12 h-12 bg-white rounded-full"
>
<img
src="public/assets/icons/twitter.svg"
alt="facebook"
width="24"
height="24"
/>
</div>
<div
class="flex justify-center items-center w-12 h-12 bg-white rounded-full"
>
<img
src="public/assets/icons/instagram.svg"
alt="facebook"
width="24"
height="24"
/>
</div>
</div>
</a>
</div>
<div class="flex flex-1 justify-between lg:gap-10 gap-20 flex-wrap">
<div>
<h4
class="text-white font-montserrat text-2xl leading-normal font-medium mb-6"
>
Products
</h4>
<ul>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Air Force 1</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Air Max 1</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Air Jordan 1</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Air Force 2</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Nike Waffle Race</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Nike Cortez</a>
</li>
</ul>
</div>
<div>
<h4
class="text-white font-montserrat text-2xl leading-normal font-medium mb-6"
>
Help
</h4>
<ul>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">About us</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">FAQs</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">How it works</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Privacy policy</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">Payment policy</a>
</li>
</ul>
</div>
<div>
<h4
class="text-white font-montserrat text-2xl leading-normal font-medium mb-6"
>
Get in touch
</h4>
<ul>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">customer@nike.com</a>
</li>
<li
class="mt-3 text-white-400 font-montserrat text-base leading-normal hover:text-slate-gray cursor-pointer"
>
<a href="/">+92554862354</a>
</li>
</ul>
</div>
</div>
</div>
<div
class="flex justify-between text-white-400 mt-24 max-sm:flex-col max-sm:items-center"
>
<div
class="flex justify-start items-center gap-2 font-montserrat cursor-pointer"
>
<img
src="public/assets/icons/copyright-sign.svg"
alt="copyright"
width="20"
height="20"
class="rounded-full m-0"
/>
<p>Copyright. All rights reserved.</p>
</div>
<p class="font-montserrat cursor-pointer">Terms & Conditions</p>
</div>
</footer>
</section>
</main>
</body>
</html>