-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
808 lines (747 loc) · 31.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
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
<!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="icon" href="./assets/icons8-shopify.svg" type="image/svg" />
<!-- Linking font awesome library -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
screens: {
sm: '640px',
md: '760px',
lg: '950px',
xl: '1100px',
'2xl': '1250px',
},
extend: {
colors: {
skin: '#FBF7ED',
green: '#008060',
lightGreen: '#F3FCF4',
darkGreen: '#004C3F',
darkGray: '#464B50',
},
},
},
};
</script>
<title>Shopify</title>
</head>
<body>
<!-- Navbar -->
<nav class="sticky top-0 bg-skin z-10 border-b-[1px]" id="navbar">
<div class="px-6 py-2 flex justify-between items-center md:px-8 md:py-0 xl:px-14 2xl:px-20">
<!-- Logo -->
<div>
<a href="#">
<img class="hidden w-32 mr-12 md:inline-block" src="./assets/logo.png" alt="logo" />
</a>
<a href="#">
<img class="w-10 md:hidden" src="./assets/icons8-shopify-black.svg" alt="logo" />
</a>
</div>
<!-- Left Navigation links -->
<div class="hidden flex-1 space-x-6 xl:block">
<a class="text-lg font-semibold text-darkGray" href=""
>Start <i class="ml-0.5 text-xs fa-solid fa-angle-down"></i
></a>
<a class="text-lg font-semibold text-darkGray" href=""
>Sell <i class="ml-0.5 text-xs fa-solid fa-angle-down"></i
></a>
<a class="text-lg font-semibold text-darkGray" href=""
>Market <i class="ml-0.5 text-xs fa-solid fa-angle-down"></i
></a>
<a class="text-lg font-semibold text-darkGray" href=""
>Manage <i class="ml-0.5 text-xs fa-solid fa-angle-down"></i
></a>
</div>
<!-- Right Navigation links -->
<div class="hidden space-x-6 xl:block">
<a class="text-lg font-semibold text-darkGray" href="">Pricing</a>
<a class="text-lg font-semibold text-darkGray" href=""
>Learn <i class="ml-0.5 text-xs fa-solid fa-angle-down"></i
></a>
<a class="text-lg font-semibold text-darkGray" href="">Login</a>
<!-- Try for free button -->
<a
class="bg-green px-4 py-2.5 rounded shadow-lg text-lg font-semibold text-white transition duration-200 hover:bg-darkGreen"
href=""
>Try for free</a
>
</div>
<!-- Hamburger Menu -->
<div class="xl:hidden cursor-pointer">
<i class="text-2xl fa-solid fa-bars"></i>
</div>
</div>
</nav>
<!-- Hero section -->
<header
class="bg-skin pb-16 flex flex-col-reverse items-center gap-0 xl:flex-row xl:gap-10 xl:py-3"
>
<!-- Content -->
<div class="px-6 space-y-6 md:px-8 xl:pl-14 2xl:pl-20 xl:w-1/2">
<h1 class="text-3xl font-bold text-darkGreen sm:text-4xl xl:text-5xl">
The easiest way to sell online in India
</h1>
<p class="text-lg text-darkGray xl:text-xl">
Try one of the most powerful platforms on the market for free. No technical knowledge
needed.
</p>
<form action="">
<div class="flex flex-col gap-4 sm:flex-row">
<input
class="border-[1px] border-darkGray rounded px-5 py-2.5 text-lg focus:outline-green sm:py-3 sm:w-3/5"
type="text"
name="email"
placeholder="Enter your email address"
required
/>
<button
class="bg-green px-6 py-3 rounded text-white font-semibold shadow-lg transition duration-200 hover:bg-darkGreen sm:text-lg"
type="submit"
>
Try for free
</button>
</div>
</form>
<p class="text-sm text-darkGray">
Try Shopify free for 14 days, no credit card required. By entering your email, you agree
to receive marketing emails from Shopify.
</p>
</div>
<!-- Illustration -->
<div class="xl:w-1/2">
<img src="./assets/hero-image.png" alt="hero-illustration" />
</div>
</header>
<!-- Bring your business online section -->
<section class="bg-darkGreen">
<div class="container mx-auto px-6 py-20 md:px-8">
<!-- Header -->
<div class="space-y-4 text-white">
<h2 class="text-2xl sm:text-4xl">Bring your business online</h2>
<p class="sm:text-lg">
Create an ecommerce website backed by powerful tools that help you find customers, drive
sales, and manage your day-to-day.
</p>
<a class="inline-block font-semibold sm:text-lg" href=""
>Explore more examples <i class="ml-1 text-sm fa-solid fa-arrow-right"></i
></a>
</div>
<!-- Examples section -->
<div class="mt-14 grid grid-cols-2 gap-x-5 gap-y-10 xl:grid-cols-5">
<div class="text-white">
<img
src="./assets/home-example-small-4144844351e226a9896cffee4bebdaeecb17897116c33a753bfd086b8b621e74.jpg"
alt=""
/>
<a class="inline-block mt-4 text-sm font-semibold uppercase hover:underline" href=""
>Food & Drink</a
><br />
<a class="text-lg" href="">Blue Tokai</a>
</div>
<div class="text-white">
<img
src="./assets/home-example-small-8b1c6b138414b76150e6e00f5143c4301a07b708aa6113dd7096f4340ddfecad.webp"
alt=""
/>
<a class="inline-block mt-4 text-sm font-semibold uppercase hover:underline" href=""
>Jewelry</a
><br />
<a class="text-lg" href="">Quirksmith</a>
</div>
<div class="text-white">
<img
src="./assets/home-example-small-099933088cbe804543fbb1b0963a5d0a16365e73e6000949b5b0ab2bf4b21503.webp"
alt=""
/>
<a class="inline-block mt-4 text-sm font-semibold uppercase hover:underline" href=""
>Electronics</a
><br />
<a class="text-lg" href="">Crossbeats</a>
</div>
<div class="text-white">
<img
src="./assets/home-example-small-26afc247af7a3a7b1c9c585a645ccdff26e76156e98be7d9ff0fe9ecd4d3b675.webp"
alt=""
/>
<a class="inline-block mt-4 text-sm font-semibold uppercase hover:underline" href=""
>Beauty</a
><br />
<a class="text-lg" href="">Mcaffeine</a>
</div>
<div class="hidden text-white xl:block">
<img
src="./assets/home-example-small-4575b175c798e22af5531bae02621396add507433f771db37b1515e9941f8a45.webp"
alt=""
/>
<a class="inline-block mt-4 text-sm font-semibold uppercase hover:underline" href=""
>Fashion</a
><br />
<a class="text-lg" href="">Bunaai</a>
</div>
</div>
<!-- Best path forward section -->
<div class="mt-24">
<h3 class="text-2xl text-white sm:text-3xl">Take the best path forward</h3>
<div class="mt-12 grid md:grid-cols-2 gap-12 xl:grid-cols-4">
<div class="space-y-3 text-white">
<img src="./assets/online.png" alt="" />
<h3 class="text-lg font-semibold">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="space-y-3 text-white">
<img src="./assets/business.png" alt="" />
<h3 class="text-lg font-semibold">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="space-y-3 text-white">
<img src="./assets/switch.png" alt="" />
<h3 class="text-lg font-semibold">Switch to Shopify</h3>
<p>
Bring your business to Shopify, no matter which ecommerce platform you're currently
using.
</p>
</div>
<div class="space-y-3 text-white">
<img src="./assets/expert.png" alt="" />
<h3 class="text-lg font-semibold">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>
<!-- Offered services section -->
<section class="bg-white">
<div class="container mx-auto px-6 py-20 md:px-8">
<!-- Header -->
<div class="mx-auto space-y-6 lg:w-2/3 xl:w-1/2">
<h2 class="text-2xl text-center sm:text-4xl">With you wherever you're going</h2>
<p class="text-darkGray text-center sm:text-xl">
One platform with all the ecommerce and point of sale features you need to start, run,
and grow your business.
</p>
</div>
<!-- List of services -->
<div class="mt-16 space-y-16 lg:space-y-5">
<!-- Sell everywhere -->
<div class="flex flex-col items-center gap-6 lg:flex-row lg:gap-20">
<!-- Video control -->
<div class="lg:w-1/2">
<video autoplay loop muted>
<source
src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/sell-animation-desktop-1b186d853b04bce6dbc12bb63bd5bc4bc1ff60cd1a06fd12f85261c8acc66d0a.webm"
type="video/webm"
/>
</video>
</div>
<!-- Content -->
<div class="space-y-4 lg:w-1/2">
<h3 class="text-2xl sm:text-3xl">Sell everywhere</h3>
<p class="text-darkGray sm:text-[17px]">
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>
<a class="inline-block text-green sm:text-lg font-semibold" href=""
>Explore ways to sell <i class="ml-1 text-base fa-solid fa-arrow-right"></i
></a>
</div>
</div>
<!-- Market your business -->
<div class="flex flex-col-reverse items-center gap-6 lg:flex-row lg:gap-20">
<!-- Content -->
<div class="space-y-4 lg:w-1/2">
<h3 class="text-2xl sm:text-3xl">Market your business</h3>
<p class="text-darkGray sm:text-[17px]">
Take the guesswork out of marketing with built-in tools that help you create,
execute, and analyze digital marketing campaigns.
</p>
<a class="inline-block text-green sm:text-lg font-semibold" href=""
>Explore how to market your business
<i class="ml-1 text-base fa-solid fa-arrow-right"></i
></a>
</div>
<!-- Illustration -->
<div class="lg:w-1/2">
<img
src="./assets/market-small-084eab2d72b510555838c446501d27dd7380585450efcaaa97453289b2b69c79.webp"
alt=""
/>
</div>
</div>
<!-- Manage everything -->
<div class="flex flex-col items-center gap-6 lg:flex-row lg:gap-20">
<!-- Illustration -->
<div class="lg:w-1/2">
<img src="./assets/chart.png" alt="" />
</div>
<!-- Content -->
<div class="space-y-4 lg:w-1/2">
<h3 class="text-2xl sm:text-3xl">Manage everything</h3>
<p class="text-darkGray sm:text-[17px]">
Gain the insights you need to grow—use a single dashboard to manage orders,
shipping, and payments anywhere you go.
</p>
<a class="inline-block text-green sm:text-lg font-semibold" href=""
>Explore how to manage your business
<i class="ml-1 text-base fa-solid fa-arrow-right"></i
></a>
</div>
</div>
</div>
</div>
</section>
<!-- Explore more section -->
<section class="bg-lightGreen">
<div class="container mx-auto px-6 py-20 md:px-8">
<h2 class="text-2xl text-darkGreen sm:text-3xl">Explore more from Shopify in India</h2>
<div class="mt-10 flex flex-col-reverse lg:flex-row">
<!-- Content -->
<div class="bg-white px-7 py-10 flex flex-col justify-center gap-4 sm:px-10 lg:w-1/2">
<p class="text-sm font-bold uppercase">Start</p>
<h3 class="text-xl sm:text-2xl">Launch your store with the help of a Shopify Expert</h3>
<p class="text-darkGray">
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>
<a class="text-green font-semibold sm:text-lg" href=""
>Browse Experts in India <i class="ml-1 text-base fa-solid fa-arrow-right"></i
></a>
</div>
<!-- User image -->
<div
class="w-full h-80 bg-[url('./assets/india-experts-small-432c16e7cd8ec09f3ae3aca42c58775001d5dc511e70608476ed7ee0e2d2e2c5.webp')] bg-center bg-cover bg-no-repeat sm:h-96 lg:w-1/2 lg:h-auto"
></div>
</div>
</div>
</section>
<!-- Empowering business owners section -->
<section class="bg-white">
<div class="container mx-auto px-6 py-16 space-y-14 md:px-8">
<!-- Header -->
<div class="space-y-7 lg:w-2/3 xl:w-1/2">
<h2 class="text-2xl sm:text-3xl">Empowering independent business owners everywhere</h2>
<h3 class="text-lg sm:text-xl md:text-2xl">
Millions of businesses in
<span class="font-semibold">175 countries</span> around the world have made over
<span class="font-semibold">$496 billion USD</span> in sales using Shopify.
</h3>
<a class="inline-block text-green font-semibold sm:text-xl" href=""
>Learn more about Shopify <i class="ml-1 text-base fa-solid fa-arrow-right"></i
></a>
</div>
<!-- Globe image -->
<div>
<img class="block mx-auto w-3/5" src="./assets/globe.png" alt="globe" />
</div>
<!-- Alicia Souza review -->
<div class="flex flex-col lg:flex-row">
<!-- User images -->
<div
class="w-full h-80 bg-[url('./assets/alicia-souza-testimonial@mobile-34e68494f20c9f325956f42d36a32c4dceab3772fe7342a74f8408ee512c23a4.jpg')] bg-center bg-cover bg-no-repeat sm:h-96 lg:w-1/2 lg:h-auto lg:bg-[url('./assets/alicia-souza-testimonial@desktop-d947199e09069edaf78e332d87ba932b45805e3c91d032ba8a083a6f67ad04b5.jpg')]"
></div>
<!-- User review -->
<div
class="bg-darkGreen px-6 py-10 flex flex-col justify-center items-center gap-10 md:px-14 lg:w-1/2 lg:py-16"
>
<p class="text-lg text-white text-center sm:text-xl xl:text-2xl">
“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>
<img
src="./assets/logo-alicia-souza-small-4ac1bd956b9bf4d8fd78b6597f24ba9379714861042d3a199065b704a11657e6.webp"
alt=""
/>
<p class="text-lg text-white sm:text-xl">Alicia | Alicia Souza</p>
</div>
</div>
<!-- Brands -->
<div class="flex items-center justify-center flex-wrap gap-x-20 gap-y-12">
<img
src="./assets/bajaao-small-6ca0459c2a2fc6a57654d85cd1f053828d7fee97ecf7ff6dd8a1c460d0a5d344.webp"
alt="bajaao"
/>
<img
src="./assets/johnjacobs-small-79aa379de8a1c0d6df1c33af8c63a677871164315ccbc495423aeaead650d53a.webp"
alt="john-jacobs"
/>
<img
src="./assets/kylie-small-4e25b192755f809e9795d9f3722f3fa6b46da1fdc2a48b3ec8b6311f50f83ac7.avif"
alt="kylie"
/>
<img
src="./assets/nush-small-04d75ec8d5b3e20b6e227006c23759c8b65efd482808aff0fc17140c5efb36cc.webp"
alt="nush"
/>
<img
src="./assets/yogabar-small-a41c8bbe605289256552b537eb1bbf993845442c3af43ff4f8f1ed932a7b3609.webp"
alt="yogabar"
/>
<img
src="./assets/starstruck-small-6d49ff528f3ef3217015f906a1ece473e2559688669d00e2b88e7be4f65ce3bf.webp"
alt="starstruck"
/>
<img
src="./assets/mcaffeine-small-0c55170838a60e6a490dac7732d44f988f754de89d790de26b0d8e50a01029b4.webp"
alt="mcaffeine"
/>
</div>
</div>
</section>
<!-- Get help section -->
<section class="mt-6 flex flex-col lg:flex-row">
<!-- Content -->
<div
class="bg-skin px-6 py-14 flex flex-col justify-center gap-14 sm:px-14 lg:w-2/3 xl:w-1/2"
>
<h2 class="text-2xl sm:text-4xl">
Get the help you need,<br />
every step of the way
</h2>
<div class="grid 2xl:grid-cols-2 gap-10">
<div class="space-y-3">
<h5 class="text-lg font-semibold">Shopify support</h5>
<p class="text-darkGray">
Contact support 24/7, whether you're troubleshooting issues or looking for business
advice.
</p>
<a class="inline-block font-semibold text-darkGreen" href=""
>Contact support <i class="ml-1 text-sm fa-solid fa-arrow-right"></i
></a>
</div>
<div class="space-y-3">
<h5 class="text-lg font-semibold">Shopify App Store</h5>
<p class="text-darkGray">
Add features and functionality to your business with 6,000+ apps that integrate
directly with Shopify.
</p>
<a class="inline-block font-semibold text-darkGreen" href=""
>Visit the Shopify App Store <i class="ml-1 text-sm fa-solid fa-arrow-right"></i
></a>
</div>
<div class="space-y-5">
<h5 class="text-lg font-semibold">Shopify Experts Marketplace</h5>
<p class="text-darkGray">
Hire a Shopify expert to help you with everything from store setup to SEO.
</p>
<a class="inline-block font-semibold text-darkGreen" href=""
>Explore the Shopify Experts Marketplace
<i class="ml-1 text-sm fa-solid fa-arrow-right"></i
></a>
</div>
</div>
</div>
<!-- User images -->
<div
class="lg:w-1/3 lg:h-auto bg-[url('./assets/help@tablet-a9195c3e50337c6b9adced78c28995878aad5622c8bff25531aa772501e8c3c4.webp')] lg:bg-center lg:bg-cover lg:bg-no-repeat xl:w-1/2 xl:bg-[url('./assets/help@desktop-9a31a38edab7cba3389c5d71eccb81ab32d24e0eeb40c8eac3568d98bc179e1e.webp')]"
>
<img
class="w-full lg:hidden"
src="./assets/help@mobile-d425d91a15904a11c2c968cbc5d0365bc1db3ddb0b3c1e6d8582fa9138178084.webp"
alt=""
/>
</div>
</section>
<!-- Free trial section -->
<section>
<div class="container mx-auto px-6 pt-20 pb-10 md:px-8">
<!-- Main -->
<div class="mx-auto space-y-7 lg:w-2/3">
<h3 class="text-2xl text-center sm:text-3xl">Start your business journey with Shopify</h3>
<p class="text-darkGray text-center sm:text-lg">
Try Shopify for free, and explore all the tools and services you need to start, run, and
grow your business.
</p>
<button
class="block mx-auto bg-green px-6 py-3 rounded text-white font-semibold shadow-lg transition duration-200 hover:bg-darkGreen sm:text-lg"
>
Start free trial
</button>
</div>
<div class="mt-20 text-center md:text-right">
<a class="inline-block text-lg font-semibold text-green sm:text-xl" href="#navbar"
>Back to top <i class="ml-1 fa-solid fa-arrow-up"></i
></a>
</div>
</div>
</section>
<!-- Footer section -->
<footer class="bg-darkGreen">
<!-- Footer top -->
<div class="container mx-auto px-6 md:px-8">
<!-- Top navigation links -->
<div
class="py-6 border-b-[1px] border-white/[0.1] flex justify-center md:justify-start flex-wrap gap-x-8 gap-y-3"
>
<a
class="text-white sm:text-lg font-semibold md:hover:underline decoration-2 underline-offset-[30px]"
href=""
>About</a
>
<a
class="text-white sm:text-lg font-semibold md:hover:underline decoration-2 underline-offset-[30px]"
href=""
>Careers</a
>
<a
class="text-white sm:text-lg font-semibold md:hover:underline decoration-2 underline-offset-[30px]"
href=""
>Press and Media</a
>
<a
class="text-white sm:text-lg font-semibold md:hover:underline decoration-2 underline-offset-[30px]"
href=""
>Shopify Plus</a
>
<a
class="text-white sm:text-lg font-semibold md:hover:underline decoration-2 underline-offset-[30px]"
href=""
>Sitemap</a
>
</div>
<!-- Bottom navigation links -->
<div class="py-8 grid grid-cols-2 lg:grid-cols-4 gap-12">
<!-- Online Store -->
<ul class="space-y-2.5 text-gray-300">
<li class="text-sm sm:text-base text-white font-semibold uppercase">Online Store</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Sell online</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Examples</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Website builder</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Online retail</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Ecommerce website</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Domain names</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Shopping Cart</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Ecommerce hosting</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Mobile commerce</a
>
</li>
<li class="text-sm sm:text-base text-sm sm:text-base hover:text-white">
<a href="">Online store builder</a>
</li>
<li class="text-sm sm:text-base text-sm sm:text-base hover:text-white">
<a href="">Dropshipping Business</a>
</li>
<li class="text-sm sm:text-base text-sm sm:text-base hover:text-white">
<a href="">Store themes</a>
</li>
</ul>
<!-- Support -->
<ul class="space-y-2.5 text-gray-300">
<li class="text-sm sm:text-base text-white font-semibold uppercase">Support</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>24/7 support</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Shopify Help Center</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Shopify Community</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>API documentation</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Free tools</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Free stock photos</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Websites for sale</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Logo Maker</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Business name generator</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Research</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Legal</a
>
</li>
</ul>
<!-- Shopify -->
<ul class="space-y-2.5 text-gray-300">
<li class="text-sm sm:text-base text-white font-semibold uppercase">Shopify</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Contact</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Partner program</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Affiliate program</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>App developers</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Investors</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Blog topics</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Community Events</a
>
</li>
</ul>
<!-- Point of Sale -->
<ul class="space-y-2.5 text-gray-300">
<li class="text-sm sm:text-base text-white font-semibold uppercase">Point of Sale</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Point of Sale</a
>
</li>
<li>
<a class="text-sm sm:text-base text-sm sm:text-base hover:text-white" href=""
>Features</a
>
</li>
</ul>
</div>
</div>
<!-- Divider -->
<div class="h-[1px] bg-white/[0.1]"></div>
<!-- Footer bottom -->
<div
class="container mx-auto px-6 py-10 flex flex-col items-center gap-6 md:px-8 md:flex-row md:justify-between"
>
<!-- Social Links -->
<div class="flex gap-4">
<a href="">
<div class="w-7 h-7 bg-white rounded-full flex justify-center items-center">
<i class="text-lg text-darkGreen fa-brands fa-facebook-f"></i></div
></a>
<a href=""
><div class="w-7 h-7 bg-white rounded-full flex justify-center items-center">
<i class="text-lg text-darkGreen fa-brands fa-twitter"></i></div
></a>
<a href=""
><div class="w-7 h-7 bg-white rounded-full flex justify-center items-center">
<i class="text-lg text-darkGreen fa-brands fa-youtube"></i></div
></a>
<a href=""
><div class="w-7 h-7 bg-white rounded-full flex justify-center items-center">
<i class="text-lg text-darkGreen fa-brands fa-instagram"></i></div
></a>
<a href=""
><div class="w-7 h-7 bg-white rounded-full flex justify-center items-center">
<i class="text-lg text-darkGreen fa-brands fa-linkedin-in"></i></div
></a>
<a href=""
><div class="w-7 h-7 bg-white rounded-full flex justify-center items-center">
<i class="text-lg text-darkGreen fa-brands fa-pinterest-p"></i></div
></a>
</div>
<!-- Miscellaneous -->
<div class="flex gap-6">
<a class="text-sm sm:text-base text-gray-300 hover:text-white" href=""
>Terms of Service</a
>
<a class="text-sm sm:text-base text-gray-300 hover:text-white" href="">Privacy Policy</a>
<div class="text-sm sm:text-base text-white cursor-pointer space-x-1">
<i class="fa-solid fa-globe"></i>
<span>India</span>
<i class="relative bottom-0.5 text-sm fa-sharp fa-solid fa-sort-down"></i>
</div>
</div>
</div>
</footer>
</body>
</html>