-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1009 lines (992 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Inter:wght@400;500;700;800&family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
/>
<link
rel="shortcut icon"
href="./asset/shopify-favicon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./css/style.css" />
<title>Best Ecommerce Platform in India | Custom</title>
</head>
<body class="font-poppins bg-bgncolor overflow-x-hidden w-full h-screen">
<header class="bg-bgncolor p-4 fixed z-10 left-0 right-0 top-0">
<div
class="lg:mx-16 flex flex-row justify-between items-center flex-wrap"
>
<div class="flex flex-row justify-between items-center">
<div>
<img
class="w-[8rem] cursor-pointer"
src="./asset/shopify-logo.svg"
alt="logo"
/>
</div>
<nav
class="hidden lg:flex flex-row justify-between items-center ml-6"
>
<a
href="#"
class="text-gray-700 hover:text-black hover:font-semibold"
>Start <i class="fa-solid fa-angle-down"></i
></a>
<a
href="#"
class="ml-4 text-gray-700 hover:text-black hover:font-semibold"
>Sell <i class="fa-solid fa-angle-down"></i
></a>
<a
href="#"
class="ml-4 text-gray-700 hover:text-black hover:font-semibold"
>Market <i class="fa-solid fa-angle-down"></i
></a>
<a
href="#"
class="ml-4 text-gray-700 hover:text-black hover:font-semibold"
>Manage <i class="fa-solid fa-angle-down"></i
></a>
</nav>
</div>
<div class="flex flex-row justify-between items-center">
<nav
class="hidden lg:flex flex-row justify-between items-center mr-6 text-gray-800"
>
<a
href="#"
class="text-gray-700 hover:text-black hover:font-semibold"
>Pricing</a
>
<a
href="#"
class="ml-4 text-gray-700 hover:text-black hover:font-semibold"
>Learn <i class="fa-solid fa-angle-down"></i
></a>
<a
href="#"
class="ml-4 text-gray-700 hover:text-black hover:font-semibold"
>Log in</a
>
</nav>
<div>
<button
class="hidden lg:block p-3 bg-greenlight hover:bg-greenhover rounded-md text-white font-semibold"
>
Try For Free
</button>
</div>
<div class="flex flex-wrap lg:hidden">
<a
href="#"
class="hover:text-black hover:font-semibold cursor-pointer"
>Log in</a
>
<a
href="#"
class="hover:text-black hover:font-semibold ml-4 text-xl cursor-pointer"
><i class="fa-solid fa-bars"></i
></a>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section
id="hero"
class="flex flex-col justify-center items-center leading-8 mt-40 p-4 lg:p-0 lg:flex-row"
>
<div class="lg:mx-24 p-4 w-full h-full">
<h1
class="text-greendark text-2xl font-inter font-bold mb-8 w-full lg:w-[80%] lg:text-5xl lg:font-extrabold"
>
The easiest way to sell online in India
</h1>
<h3 class="text-gray-600 mb-8 text-xl lg:w-[80%]">
Try one of the most powerful platforms on the market for
free. No technical knowledge needed.
</h3>
<form
action="get"
class="flex flex-col justify-center items-center md:justify-start md:flex-row"
>
<input
class="w-[100%] h-14 p-2 mb-6 rounded-md border-gray-500 border-2 border-solid hover:border-greendark md:w-80 md:mb-0"
type="email"
name="email"
placeholder="Enter Your email address"
required
/>
<button
class="w-[100%] p-3 bg-greenlight hover:bg-greenhover rounded-md md:w-40 md:ml-6 text-white font-semibold"
>
Try For Free
</button>
</form>
</div>
<div>
<video
class="w-[100%]"
src="./asset/hero-video.mp4"
autoplay
loop
muted
></video>
</div>
</section>
<!-- Bring your Business online -->
<section class="bg-greendark py-14 w-full">
<div class="gird grid-cols-1 p-4 text-white md:p-0 md:mx-20">
<div
class="py-10 mb-10 flex flex-col xl:justify-between xl:items-center xl:flex-row"
>
<div>
<h2 class="text-3xl lg:text-4xl mb-4">
Bring your business online
</h2>
<p class="mb-6 xl:mb-0">
Create an ecommerce website backed by powerful tools
that help you find customers, drive sales, and
manage your day-to-day.
</p>
</div>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center"
>
<h3 class="hover:mr-3">Explore more examples</h3>
<i
class="fa-solid fa-arrow-right-long text-white ml-1 hover:ml-3"
></i
></a>
</div>
</div>
<div
class="grid grid-cols-2 gap-6 mb-16 p-2 md:grid-cols-4 lg:grid-cols-5"
>
<div class="max-w-[100%] min-h-[100%]">
<img
class="mb-4 max-w-[100%]"
src="./asset/business-1.webp"
alt="image"
/>
<span
class="block mb-1 font-bold uppercase hover:underline"
>Food & Drink</span
>
<span class="block">Blue Tokai</span>
</div>
<div class="max-w-[100%] min-h-[100%]">
<img
class="mb-4 max-w-[100%]"
src="./asset/business-2.webp"
alt="image"
/>
<span
class="block mb-1 font-bold uppercase hover:underline"
>jewelry</span
>
<span class="block">Quirksmith</span>
</div>
<div class="max-w-[100%] min-h-[100%]">
<img
class="mb-4 max-w-[100%]"
src="./asset/business-3.webp"
alt="image"
/>
<span
class="block mb-1 font-bold uppercase hover:underline"
>ELECTRONICS</span
>
<span class="block">Crossbeats</span>
</div>
<div class="max-w-[100%] min-h-[100%]">
<img
class="mb-4 max-w-[100%]"
src="./asset/business-4.webp"
alt="image"
/>
<span
class="block mb-1 font-bold uppercase hover:underline"
>Beauty</span
>
<span class="block">Mcaffeine</span>
</div>
<div class="hidden xl:block max-w-[100%] min-h-[100%]">
<img
class="mb-4 max-w-[100%]"
src="./asset/business-5.webp"
alt="image"
/>
<span
class="block mb-1 font-bold uppercase hover:underline"
>Fashion</span
>
<span class="block">Bunaai</span>
</div>
</div>
<div class="grid grid-cols-1">
<div>
<h2 class="text-3xl lg:text-4xl mb-16">
Take teh best path forward
</h2>
</div>
<div
class="grid grid-cols-1 gap-6 md:grid-cols-2 xl:grid-cols-4"
>
<div
class="max-w-[100%] min-h-[100%] flex flex-col justify-center items-start sm:max-w-[70%] xl:max-xl-[100%]"
>
<img
class="w-12 mb-4"
src="./asset/online-business.svg"
alt="image"
/>
<h3 class="text-xl font-inter font-semibold mb-4">
Start an online business
</h3>
<p>
Create a business, whether you’ve got a fresh
idea or are looking for a new way to make money.
</p>
</div>
<div
class="max-w-[100%] min-h-[100%] flex flex-col justify-center items-start sm:max-w-[70%] xl:max-xl-[100%]"
>
<img
class="w-12 mb-4"
src="./asset/move-online.svg"
alt="image"
/>
<h3 class="text-xl font-inter font-semibold mb-4">
Move your business online
</h3>
<p>
Turn your retail store into an online store and
keep serving customers without missing a beat.
</p>
</div>
<div
class="max-w-[100%] min-h-[100%] flex flex-col justify-center items-start sm:max-w-[70%] xl:max-xl-[100%]"
>
<img
class="w-12 mb-4"
src="./asset/switch-shopify.svg"
alt="image"
/>
<h3 class="text-xl font-inter font-semibold mb-4">
Switch to Shopify
</h3>
<p>
Bring your business to Shopify, no matter which
ecommerce platform you’re currently using.
</p>
</div>
<div
class="max-w-[100%] min-h-[100%] flex flex-col justify-center items-start sm:max-w-[70%] xl:max-xl-[100%]"
>
<img
class="w-12 mb-4"
src="./asset/user.svg"
alt="image"
/>
<h3 class="text-xl font-inter font-semibold mb-4">
Hire a Shopify expert
</h3>
<p>
Get set up with the help of a trusted freelancer
or agency from the Shopify Experts Marketplace.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Sell everywhere -->
<section class="bg-white py-28 w-full">
<div class="grid grid-cols-1 md:mx-24">
<div
class="p-2 mb-12 self-center justify-self-center text-center sm:w-[50%]"
>
<h2 class="mb-6 text-2xl font-semibold lg:text-3xl">
With you wherever you're going
</h2>
<p class="text-xl text-gray-600">
One platform with all the ecommerce and point of sale
features you need to start, run, and grow your business.
</p>
</div>
<div
class="flex flex-col-reverse justify-center items-center xl:flex-row xl:justify-between"
>
<div>
<video
class="w-[100%] md:w-[75%]"
src="./asset/video-shopify.mp4"
autoplay
loop
muted
></video>
</div>
<div
class="p-4 flex flex-col justify-center items-start mb:6 lg:mb-14 lg:max-w-[70%]"
>
<h2
class="text-xl font-inter font-medium mb-6 lg:text-3xl"
>
Sell everywhere
</h2>
<p class="mb-6 md:w-3/4">
Use one platform to sell products to anyone,
anywhere—in person with Point of Sale and online
through your website, social media, and online
marketplaces.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">Explore ways to sell</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
</div>
<div
class="flex flex-col justify-center items-center xl:flex-row xl:justify-between xl:px-10"
>
<div
class="p-4 flex flex-col justify-center items-start mb:6 lg:mb-14 lg:max-w-[70%]"
>
<h2
class="text-xl font-inter font-medium mb-6 lg:text-3xl"
>
Market your business
</h2>
<p class="mb-6 md:w-3/4">
Take the guesswork out of marketing with built-in
tools that help you create, execute, and analyze
digital marketing campaigns.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">
Explore how to market your business
</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
<div>
<img
class="w-[90%]"
src="./asset/market-business.jpg"
alt="image"
/>
</div>
</div>
<div
class="flex flex-col-reverse justify-center items-center xl:flex-row xl:justify-between"
>
<div>
<img
class="w-[90%]"
src="./asset/shopify-dashboard.svg"
alt="image"
/>
</div>
<div
class="p-4 flex flex-col justify-center items-start mb:6 lg:mb-14 lg:max-w-[70%]"
>
<h2
class="text-xl font-inter font-medium mb-6 lg:text-3xl"
>
Manage everything
</h2>
<p class="mb-6 md:w-3/4">
Gain the insights you need to grow—use a single
dashboard to manage orders, shipping, and payments
anywhere you go.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">
Explore how to manage your business
</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
</div>
</div>
</section>
<!-- Explore Shopify in India -->
<section class="bg-green-50 py-28 px-4 md:px-6 lg:px-24 w-full">
<div class="container mx-auto flex flex-col">
<div class="mb-10">
<h2 class="text-greendark text-2xl lg:text-3xl">
Explore more from Shopify in India
</h2>
</div>
<div
class="bg-white flex flex-col gap-6 max-w-full min-h-full lg:flex-row"
>
<div
class="flex-1 flex flex-col justify-start p-4 items-start"
>
<h3 class="uppercase font-bold mb-6 lg:mb-16">STart</h3>
<h2 class="text-2xl mb-4 lg:text-3xl">
Launch your store with the help of a Shopify Expert
</h2>
<p class="mb-4">
Find hundreds of experts from India ready to help
you get your store up and running, from choosing a
theme to building a fully customized site.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">
Explore how to manage your business
</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
<div class="flex-1">
<img
class="max-w-full min-h-[20rem]"
src="./asset/person.jpg"
alt="person"
/>
</div>
</div>
</div>
</section>
<!-- world map -->
<section class="py-20 px-24 w-full">
<div class="container mx-auto flex flex-col">
<div
class="flex flex-col justify-start items-start lg:max-w-2xl"
>
<h2 class="text-2xl font-inter mb-4 lg:text-3xl lg:mb-8">
Empowering independent business owners everywhere
</h2>
<p class="mb-4">
Millions of businesses in
<span class="font-extrabold">175 countries</span> around
the world have made over
<span class="font-extrabold">$496 billion USD</span> in
sales using Shopify.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">Learn more about Shopify</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
<div class="flex items-center justify-center">
<img
class="min-h-full"
src="./asset/world.png"
alt="world image"
/>
</div>
</div>
</section>
<!-- review -->
<section class="pb-40 w-full">
<div class="md:mx-20 flex flex-col">
<div
class="bg-greendarkest flex flex-col justify-between items-center mb-10 lg:flex-row"
>
<div class="flex-1">
<img
class="w-[40rem] max-w-full"
src="./asset/girl.jpg"
alt="girl image"
/>
</div>
<div
class="flex-1 p-4 text-white text-center flex flex-col justify-center items-center"
>
<p class="text-xl lg:text-2xl mb-8">
“Shopify was my knight in shining armor when I
exhausted every other possibility of getting my
online store up and running. It was stunningly easy
to use, with more features and plug-ins that I
didn’t even know I wanted.”
</p>
<div class="flex flex-col lg:mt-10">
<img
class="mb-4"
src="./asset/alice.png"
alt="logo"
/>
<span>Alicia | Slicia Souza</span>
</div>
</div>
</div>
<div
class="flex justify-center items-center flex-wrap p-4 lg:justify-between"
>
<div class="mb-8 lg:mb-0">
<img src="./asset/logo-1.png" alt="logo" />
</div>
<div class="mb-8 lg:mb-0">
<img src="./asset/logo-2.png" alt="logo" />
</div>
<div class="mb-8 lg:mb-0">
<img src="./asset/logo-3.png" alt="logo" />
</div>
<div class="mb-8 lg:mb-0">
<img src="./asset/logo-4.png" alt="logo" />
</div>
<div class="mb-8 lg:mb-0">
<img src="./asset/logo-5.png" alt="logo" />
</div>
<div class="mb-8 lg:mb-0">
<img src="./asset/logo-6.png" alt="logo" />
</div>
<div class="mb-8 lg:mb-0">
<
<img src="./asset/logo-7.png" alt="logo" />
</div>
</div>
</div>
</section>
<!-- Help -->
<section class="bg-bgncolor w-full">
<div class="flex flex-col justify-between gap-10 md:flex-row">
<div
class="flex flex-col items-start py-6 px-4 md:px-0 md:w-1/2 md:pl-24"
>
<div class="mb-10 text-3xl font-inter xl:w-[50%]">
<h2>Get the help you need, every step of the way</h2>
</div>
<div class="grid gap-6 grid-cols-1 md:grid-cols-2">
<div class="max-w-full min-h-full">
<h3 class="font-inter font-semibold text-xl mb-3">
Shopify support
</h3>
<p class="text-gray-600 mb-3">
Contact support 24/7, whether you're
troubleshooting issues or looking for business
advice.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">
Learn maore about Shopify
</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
<div class="max-w-full min-h-full">
<h3 class="font-inter font-semibold text-xl mb-3">
Shopify App Stote
</h3>
<p class="text-gray-600 mb-3">
Add features and functionality to your business
with 6,000+ apps that integrate directly with
Shopify.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">
Visit the Shopify App Store
</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
<div
class="max-w-full min-h-full md:col-span-2 md:w-10/12"
>
<h3 class="font-inter font-semibold text-xl mb-3">
Shopify Experts Marketplace
</h3>
<p class="text-gray-600 mb-3">
Hire a Shopify expert to help you with
everything from store setup to SEO.
</p>
<div>
<a
href="#"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl"
>
<h3 class="hover:mr-3">
Explore the Shopify Experts Marketplace
</h3>
<i
class="fa-solid fa-arrow-right-long ml-2 hover:ml-3"
></i
></a>
</div>
</div>
</div>
</div>
<div class="max-w-2xl min-h-full">
<img src="./asset/help.webp" alt="help" />
</div>
</div>
</section>
<!-- Start with Shopify -->
<section class="bg-white py-20 w-full">
<div class="flex flex-col">
<div
class="flex flex-col justify-center items-center text-center mb-10"
>
<h2 class="text-2xl lg:text-3xl mb-5">
Start your business journey with Shopify
</h2>
<h3 class="text-xl text-gray-500 mb-5 lg:w-[60%]">
Try Shopify for free, and explore all the tools and
services you need to start, run, and grow your business.
</h3>
<button
class="w-[100%] p-3 bg-greenlight hover:bg-greenhover rounded-md md:w-40 md:ml-6 text-white font-semibold"
>
Start Free Trail
</button>
</div>
<div class="flex justify-center items-center md:justify-end">
<a
href="#hero"
class="cursor-pointer flex flex-row items-center text-greenhover text-xl lg:mr-4"
>
<h3 class="hover:mt-3">Back to top</h3>
<i class="fa-solid fa-arrow-up ml-2 hover:mb-4"></i
></a>
</div>
</div>
</section>
<!-- footer -->
<footer class="bg-greendarkest px-4 py-4 lg:px-24 w-full">
<div class="flex flex-col">
<div class="py-4 felx border-b-2 border-b-slate-700 mb-8">
<nav
class="text-white flex flex-wrap justify-center items-center lg:justify-start"
>
<a href="#" class="text-xl font-inter font-bold"
>About</a
>
<a href="#" class="text-xl font-inter font-bold ml-4"
>Careers</a
>
<a href="#" class="text-xl font-inter font-bold ml-4"
>Predd and Media</a
>
<a href="#" class="text-xl font-inter font-bold ml-4"
>Shopify Plus</a
>
<a href="#" class="text-xl font-inter font-bold ml-4"
>Sitemap</a
>
</nav>
</div>
<div
class="flex gap-12 flex-wrap items-start lg:pb-20 border-b-2 border-b-slate-700"
>
<div class="text-white">
<h2 class="text-xl font-bold mb-4 cursor-pointer">
ONLINE STORE
</h2>
<nav class="text-white flex flex-col capitalize">
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Sell online</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Features</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Examples</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Website builder</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Onlie retail</a
>
</nav>
</div>
<div class="mt-10">
<nav class="text-white flex flex-col capitalize">
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Ecommerce website</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Domain names</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Themes</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>shopping cart</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Ecommerce hosting</a
>
</nav>
</div>
<div class="mt-10">
<nav class="text-white flex flex-col capitalize">
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Mobile commerce</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Ecommerce software</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Online store builder</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Dropshipping Business</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Store Themes</a
>
</nav>
</div>
<div class="text-white">
<h2 class="text-xl font-bold mb-4">POINT OF SALE</h2>
<nav class="text-white flex flex-col capitalize">
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Point of sale</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Features</a
>
</nav>
</div>
<div class="text-white">
<h2 class="text-xl font-bold mb-4">SUPPORT</h2>
<nav class="text-white flex flex-col capitalize">
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>24/7 support</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>shopify Help Center</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Shopify Community</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>API documentation</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Free tools</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Free stock photos</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Website for Sale</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Logo Maker</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Business name generator</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Research</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Legal</a
>
</nav>
</div>
<div class="text-white">
<h2 class="text-xl font-bold mb-4">Shopify</h2>
<nav class="text-white flex flex-col capitalize">
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Contact</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Partner program</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Affilate program</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>App developers</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Investors</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>blog topics</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Community Events</a
>
</nav>
</div>
</div>
<div>
<div
class="mt-6 flex flex-col justify-center items-center lg:flex-row lg:justify-between"
>
<nav
class="text-white text-xl space-x-3 mb-4 lg:space-x-6 lg:mb-0"
>
<a href="#"
><i class="fa-brands fa-facebook"></i
></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#">
<i class="fa-brands fa-youtube"></i
></a>
<a href="#"
><i class="fa-brands fa-instagram"></i
></a>
<a href="#"
><i class="fa-brands fa-linkedin"></i
></a>
<a href="#"
><i class="fa-brands fa-pinterest"></i
></a>
</nav>
<nav class="text-white space-x-2 text-sm lg:space-x-4">
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Terms of services</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100"
>Privacy Policy</a
>
<a
href="#"
class="mb-3 opacity-70 hover:opacity-100 space-x-2"
>
<i class="fa-solid fa-globe"></i> Features<i
class="fa-solid fa-caret-down"