forked from TailGrids/play-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-grids.html
1190 lines (1180 loc) · 54.3 KB
/
blog-grids.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" />
<title>Blog Grids | Play Tailwind</title>
<link
rel="shortcut icon"
href="assets/images/favicon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/tailwind.css" />
<!-- ==== WOW JS ==== -->
<script src="assets/js/wow.min.js"></script>
<script>
new WOW().init();
</script>
</head>
<body>
<!-- ====== Navbar Section Start -->
<div
class="ud-header absolute top-0 left-0 z-40 flex w-full items-center bg-transparent"
>
<div class="container">
<div class="relative -mx-4 flex items-center justify-between">
<div class="w-60 max-w-full px-4">
<a href="index.html" class="navbar-logo block w-full py-5">
<img
src="assets/images/logo/logo-white.svg"
alt="logo"
class="header-logo w-full"
/>
</a>
</div>
<div class="flex w-full items-center justify-between px-4">
<div>
<button
id="navbarToggler"
class="absolute right-4 top-1/2 block -translate-y-1/2 rounded-lg px-3 py-[6px] ring-primary focus:ring-2 lg:hidden"
>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-white"
></span>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-white"
></span>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-white"
></span>
</button>
<nav
id="navbarCollapse"
class="absolute right-4 top-full hidden w-full max-w-[250px] rounded-lg bg-white py-5 shadow-lg lg:static lg:block lg:w-full lg:max-w-full lg:bg-transparent lg:py-0 lg:px-4 lg:shadow-none xl:px-6"
>
<ul class="blcok lg:flex">
<li class="group relative">
<a
href="/#home"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70"
>
Home
</a>
</li>
<li class="group relative">
<a
href="/#about"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
About
</a>
</li>
<li class="group relative">
<a
href="/#pricing"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Pricing
</a>
</li>
<li class="group relative">
<a
href="/#team"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Team
</a>
</li>
<li class="group relative">
<a
href="/#contact"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Contact
</a>
</li>
<li class="submenu-item group relative">
<a
href="javascript:void(0)"
class="relative mx-8 flex py-2 text-base text-dark after:absolute after:right-1 after:top-1/2 after:mt-[-2px] after:h-2 after:w-2 after:-translate-y-1/2 after:rotate-45 after:border-b-2 after:border-r-2 after:border-current group-hover:text-primary lg:mr-0 lg:ml-8 lg:inline-flex lg:py-6 lg:pl-0 lg:pr-4 lg:text-white lg:after:right-0 lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Pages
</a>
<div
class="submenu relative top-full left-0 hidden w-[250px] rounded-sm bg-white p-4 transition-[top] duration-300 group-hover:opacity-100 lg:invisible lg:absolute lg:top-[110%] lg:block lg:opacity-0 lg:shadow-lg lg:group-hover:visible lg:group-hover:top-full"
>
<a
href="about.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
About Page
</a>
<a
href="pricing.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Pricing Page
</a>
<a
href="contact.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Contact Page
</a>
<a
href="blog-grids.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Blog Grid Page
</a>
<a
href="blog-details.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Blog Details Page
</a>
<a
href="signup.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Sign Up Page
</a>
<a
href="signin.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Sign In Page
</a>
<a
href="404.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
404 Page
</a>
</div>
</li>
</ul>
</nav>
</div>
<div class="hidden justify-end pr-16 sm:flex lg:pr-0">
<a
href="signin.html"
class="loginBtn py-3 px-7 text-base font-medium text-white hover:opacity-70"
>
Sign In
</a>
<a
href="signup.html"
class="signUpBtn rounded-lg bg-white bg-opacity-20 py-3 px-6 text-base font-medium text-white duration-300 ease-in-out hover:bg-opacity-100 hover:text-dark"
>
Sign Up
</a>
</div>
</div>
</div>
</div>
</div>
<!-- ====== Navbar Section End -->
<!-- ====== Banner Section Start -->
<div
class="relative z-10 overflow-hidden bg-primary pt-[120px] pb-[100px] md:pt-[130px] lg:pt-[160px]"
>
<div class="container">
<div class="-mx-4 flex flex-wrap items-center">
<div class="w-full px-4">
<div class="text-center">
<h1 class="text-4xl font-semibold text-white">Blog Grids</h1>
</div>
</div>
</div>
</div>
<div>
<span class="absolute top-0 left-0 z-[-1]">
<svg
width="495"
height="470"
viewBox="0 0 495 470"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="55"
cy="442"
r="138"
stroke="white"
stroke-opacity="0.04"
stroke-width="50"
/>
<circle
cx="446"
r="39"
stroke="white"
stroke-opacity="0.04"
stroke-width="20"
/>
<path
d="M245.406 137.609L233.985 94.9852L276.609 106.406L245.406 137.609Z"
stroke="white"
stroke-opacity="0.08"
stroke-width="12"
/>
</svg>
</span>
<span class="absolute top-0 right-0 z-[-1]">
<svg
width="493"
height="470"
viewBox="0 0 493 470"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="462"
cy="5"
r="138"
stroke="white"
stroke-opacity="0.04"
stroke-width="50"
/>
<circle
cx="49"
cy="470"
r="39"
stroke="white"
stroke-opacity="0.04"
stroke-width="20"
/>
<path
d="M222.393 226.701L272.808 213.192L259.299 263.607L222.393 226.701Z"
stroke="white"
stroke-opacity="0.06"
stroke-width="13"
/>
</svg>
</span>
</div>
</div>
<!-- ====== Banner Section End -->
<!-- ====== Blog Section Start -->
<section class="pt-20 pb-10 lg:pt-[120px] lg:pb-20">
<div class="container">
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".1s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-01.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Dec 22, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
Meet AutoManage, the best AI management tools
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".15s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-02.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Mar 15, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
How to earn more money as a wellness coach
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".2s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-03.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Jan 05, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
The no-fuss guide to upselling and cross selling
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".1s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-02.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Mar 15, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
How to earn more money as a wellness coach
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".15s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-03.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Jan 05, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
The no-fuss guide to upselling and cross selling
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".2s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-01.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Dec 22, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
Meet AutoManage, the best AI management tools
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".1s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-01.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Dec 22, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
Meet AutoManage, the best AI management tools
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".15s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-02.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Mar 15, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
How to earn more money as a wellness coach
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="wow fadeInUp group mb-10" data-wow-delay=".2s">
<div class="mb-8 overflow-hidden rounded">
<a href="blog-details.html" class="block">
<img
src="assets/images/blog/blog-03.jpg"
alt="image"
class="w-full transition group-hover:rotate-6 group-hover:scale-125"
/>
</a>
</div>
<div>
<span
class="mb-5 inline-block rounded bg-primary py-1 px-4 text-center text-xs font-semibold leading-loose text-white"
>
Jan 05, 2023
</span>
<h3>
<a
href="blog-details.html"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl"
>
The no-fuss guide to upselling and cross selling
</a>
</h3>
<p class="text-base text-body-color">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Blog Section End -->
<!-- ====== Footer Section Start -->
<footer
class="wow fadeInUp relative z-10 bg-black pt-20 lg:pt-[120px]"
data-wow-delay=".15s"
>
<div class="container">
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-4/12 xl:w-3/12">
<div class="mb-10 w-full">
<a
href="javascript:void(0)"
class="mb-6 inline-block max-w-[160px]"
>
<img
src="assets/images/logo/logo-white.svg"
alt="logo"
class="max-w-full"
/>
</a>
<p class="mb-7 text-base text-[#f3f4fe]">
We create digital experiences for brands and companies by using
technology.
</p>
<div class="-mx-3 flex items-center">
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="10"
height="18"
viewBox="0 0 10 18"
class="fill-current"
>
<path
d="M9.00007 6.82105H7.50006H6.96434V6.27097V4.56571V4.01562H7.50006H8.62507C8.91971 4.01562 9.16078 3.79559 9.16078 3.46554V0.550085C9.16078 0.247538 8.9465 0 8.62507 0H6.66969C4.55361 0 3.08038 1.54024 3.08038 3.82309V6.21596V6.76605H2.54466H0.72322C0.348217 6.76605 0 7.06859 0 7.50866V9.48897C0 9.87402 0.294645 10.2316 0.72322 10.2316H2.49109H3.02681V10.7817V16.31C3.02681 16.6951 3.32145 17.0526 3.75003 17.0526H6.26791C6.42862 17.0526 6.56255 16.9701 6.66969 16.8601C6.77684 16.7501 6.8572 16.5576 6.8572 16.3925V10.8092V10.2591H7.4197H8.62507C8.97328 10.2591 9.24114 10.0391 9.29471 9.709V9.6815V9.65399L9.66972 7.7562C9.6965 7.56367 9.66972 7.34363 9.509 7.1236C9.45543 6.98608 9.21436 6.84856 9.00007 6.82105Z"
/>
</svg>
</a>
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="19"
height="15"
viewBox="0 0 19 15"
class="fill-current"
>
<path
d="M16.2622 3.17878L17.33 1.93293C17.6391 1.59551 17.7234 1.33595 17.7515 1.20618C16.9085 1.67337 16.1217 1.82911 15.6159 1.82911H15.4192L15.3068 1.72528C14.6324 1.18022 13.7894 0.894714 12.8902 0.894714C10.9233 0.894714 9.37779 2.40012 9.37779 4.13913C9.37779 4.24295 9.37779 4.39868 9.40589 4.5025L9.49019 5.02161L8.90009 4.99565C5.30334 4.89183 2.35288 2.03675 1.87518 1.5436C1.08839 2.84136 1.53799 4.08722 2.01568 4.86587L2.97107 6.31937L1.45369 5.54071C1.48179 6.63084 1.93138 7.48736 2.80247 8.11029L3.56116 8.62939L2.80247 8.9149C3.28017 10.2386 4.34795 10.7837 5.13474 10.9913L6.17443 11.2509L5.19094 11.8738C3.61736 12.912 1.65039 12.8342 0.779297 12.7563C2.54957 13.8983 4.65705 14.1579 6.11823 14.1579C7.21412 14.1579 8.02901 14.0541 8.2257 13.9762C16.0936 12.2631 16.4589 5.77431 16.4589 4.47655V4.29486L16.6275 4.19104C17.5829 3.36047 17.9763 2.91923 18.2011 2.65967C18.1168 2.68563 18.0044 2.73754 17.892 2.7635L16.2622 3.17878Z"
/>
</svg>
</a>
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="18"
height="18"
viewBox="0 0 18 18"
class="fill-current"
>
<path
d="M8.91688 12.4995C10.6918 12.4995 12.1306 11.0911 12.1306 9.35385C12.1306 7.61655 10.6918 6.20819 8.91688 6.20819C7.14197 6.20819 5.70312 7.61655 5.70312 9.35385C5.70312 11.0911 7.14197 12.4995 8.91688 12.4995Z"
/>
<path
d="M12.4078 0.947388H5.37075C2.57257 0.947388 0.300781 3.17104 0.300781 5.90993V12.7436C0.300781 15.5367 2.57257 17.7604 5.37075 17.7604H12.3524C15.2059 17.7604 17.4777 15.5367 17.4777 12.7978V5.90993C17.4777 3.17104 15.2059 0.947388 12.4078 0.947388ZM8.91696 13.4758C6.56206 13.4758 4.70584 11.6047 4.70584 9.35389C4.70584 7.10312 6.58976 5.23199 8.91696 5.23199C11.2165 5.23199 13.1004 7.10312 13.1004 9.35389C13.1004 11.6047 11.2442 13.4758 8.91696 13.4758ZM14.735 5.61164C14.4579 5.90993 14.0423 6.07264 13.5714 6.07264C13.1558 6.07264 12.7402 5.90993 12.4078 5.61164C12.103 5.31334 11.9368 4.9337 11.9368 4.47269C11.9368 4.01169 12.103 3.65916 12.4078 3.33375C12.7125 3.00834 13.1004 2.84563 13.5714 2.84563C13.9869 2.84563 14.4302 3.00834 14.735 3.30663C15.012 3.65916 15.2059 4.06593 15.2059 4.49981C15.1782 4.9337 15.012 5.31334 14.735 5.61164Z"
/>
<path
d="M13.5985 3.82184C13.2383 3.82184 12.9336 4.12013 12.9336 4.47266C12.9336 4.82519 13.2383 5.12349 13.5985 5.12349C13.9587 5.12349 14.2634 4.82519 14.2634 4.47266C14.2634 4.12013 13.9864 3.82184 13.5985 3.82184Z"
/>
</svg>
</a>
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="18"
height="18"
viewBox="0 0 18 18"
class="fill-current"
>
<path
d="M16.7821 0.947388H1.84847C1.14272 0.947388 0.578125 1.49747 0.578125 2.18508V16.7623C0.578125 17.4224 1.14272 18 1.84847 18H16.7257C17.4314 18 17.996 17.4499 17.996 16.7623V2.15757C18.0525 1.49747 17.4879 0.947388 16.7821 0.947388ZM5.7442 15.4421H3.17528V7.32837H5.7442V15.4421ZM4.44563 6.2007C3.59873 6.2007 2.94944 5.5406 2.94944 4.74297C2.94944 3.94535 3.62696 3.28525 4.44563 3.28525C5.26429 3.28525 5.94181 3.94535 5.94181 4.74297C5.94181 5.5406 5.32075 6.2007 4.44563 6.2007ZM15.4835 15.4421H12.9146V11.509C12.9146 10.5739 12.8864 9.33618 11.5596 9.33618C10.2045 9.33618 10.0069 10.3813 10.0069 11.4265V15.4421H7.438V7.32837H9.95046V8.45605H9.9787C10.3457 7.79594 11.1644 7.13584 12.4347 7.13584C15.0601 7.13584 15.54 8.7861 15.54 11.0414V15.4421H15.4835Z"
/>
</svg>
</a>
</div>
</div>
</div>
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-2/12 xl:w-2/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">About Us</h4>
<ul>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Home
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Features
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
About
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Testimonial
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-3/12 xl:w-2/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">Features</h4>
<ul>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
How it works
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Privacy policy
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Terms of Service
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Refund policy
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-3/12 xl:w-2/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">
Our Products
</h4>
<ul>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
LineIcons
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Ecommerce HTML
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Ayro UI
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
PlainAdmin
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-4 md:w-2/3 lg:w-6/12 xl:w-3/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">Partners</h4>
<ul class="flex flex-wrap items-center">
<li>
<a
href="https://tailgrids.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/tailgrids.svg"
alt="tailgrids"
/>
</a>
</li>
<li>
<a
href="https://ayroui.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/ayroui.svg"
alt="ayroui"
/>
</a>
</li>
<li>
<a
href="https://ecommercehtml.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/ecommerce-html.svg"
alt="ecommerce-html"
/>
</a>
</li>
<li>
<a
href="https://graygrids.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/graygrids.svg"
alt="graygrids"
/>
</a>
</li>
<li>
<a
href="https://lineicons.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/lineicons.svg"
alt="lineicons"
/>
</a>
</li>
<li>
<a
href="https://uideck.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/uideck.svg"
alt="uideck"
/>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="mt-12 border-t border-opacity-40 py-8 lg:mt-[60px]">
<div class="container">
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4 md:w-2/3 lg:w-1/2">
<div class="my-1">
<div
class="-mx-3 flex items-center justify-center md:justify-start"
>
<a
href="javascript:void(0)"
class="px-3 text-base text-[#f3f4fe] hover:text-primary"
>
Privacy policy
</a>
<a
href="javascript:void(0)"
class="px-3 text-base text-[#f3f4fe] hover:text-primary"
>
Legal notice
</a>
<a
href="javascript:void(0)"
class="px-3 text-base text-[#f3f4fe] hover:text-primary"
>
Terms of service
</a>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/3 lg:w-1/2">
<div class="my-1 flex justify-center md:justify-end">
<p class="text-base text-[#f3f4fe]">
Designed and Developed by
<a
href="https://tailgrids.com"
rel="nofollow noopner"
target="_blank"
class="text-primary hover:underline"
>
TailGrids and UIdeck
</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div>
<span class="absolute left-0 top-0 z-[-1]">
<img src="assets/images/footer/shape-1.svg" alt="" />
</span>
<span class="absolute bottom-0 right-0 z-[-1]">
<img src="assets/images/footer/shape-3.svg" alt="" />
</span>
<span class="absolute top-0 right-0 z-[-1]">
<svg
width="102"
height="102"
viewBox="0 0 102 102"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.8667 33.1956C2.89765 33.1956 3.7334 34.0318 3.7334 35.0633C3.7334 36.0947 2.89765 36.9309 1.8667 36.9309C0.835744 36.9309 4.50645e-08 36.0947 0 35.0633C-4.50645e-08 34.0318 0.835744 33.1956 1.8667 33.1956Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M18.2939 33.1956C19.3249 33.1956 20.1606 34.0318 20.1606 35.0633C20.1606 36.0947 19.3249 36.9309 18.2939 36.9309C17.263 36.9309 16.4272 36.0947 16.4272 35.0633C16.4272 34.0318 17.263 33.1956 18.2939 33.1956Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M34.7209 33.195C35.7519 33.195 36.5876 34.0311 36.5876 35.0626C36.5876 36.0941 35.7519 36.9303 34.7209 36.9303C33.69 36.9303 32.8542 36.0941 32.8542 35.0626C32.8542 34.0311 33.69 33.195 34.7209 33.195Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M50.9341 33.195C51.965 33.195 52.8008 34.0311 52.8008 35.0626C52.8008 36.0941 51.965 36.9303 50.9341 36.9303C49.9031 36.9303 49.0674 36.0941 49.0674 35.0626C49.0674 34.0311 49.9031 33.195 50.9341 33.195Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M1.8667 16.7605C2.89765 16.7605 3.7334 17.5966 3.7334 18.6281C3.7334 19.6596 2.89765 20.4957 1.8667 20.4957C0.835744 20.4957 4.50645e-08 19.6596 0 18.6281C-4.50645e-08 17.5966 0.835744 16.7605 1.8667 16.7605Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M18.2939 16.7605C19.3249 16.7605 20.1606 17.5966 20.1606 18.6281C20.1606 19.6596 19.3249 20.4957 18.2939 20.4957C17.263 20.4957 16.4272 19.6596 16.4272 18.6281C16.4272 17.5966 17.263 16.7605 18.2939 16.7605Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M34.7209 16.7605C35.7519 16.7605 36.5876 17.5966 36.5876 18.6281C36.5876 19.6596 35.7519 20.4957 34.7209 20.4957C33.69 20.4957 32.8542 19.6596 32.8542 18.6281C32.8542 17.5966 33.69 16.7605 34.7209 16.7605Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M50.9341 16.7605C51.965 16.7605 52.8008 17.5966 52.8008 18.6281C52.8008 19.6596 51.965 20.4957 50.9341 20.4957C49.9031 20.4957 49.0674 19.6596 49.0674 18.6281C49.0674 17.5966 49.9031 16.7605 50.9341 16.7605Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M1.8667 0.324951C2.89765 0.324951 3.7334 1.16115 3.7334 2.19261C3.7334 3.22408 2.89765 4.06024 1.8667 4.06024C0.835744 4.06024 4.50645e-08 3.22408 0 2.19261C-4.50645e-08 1.16115 0.835744 0.324951 1.8667 0.324951Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M18.2939 0.324951C19.3249 0.324951 20.1606 1.16115 20.1606 2.19261C20.1606 3.22408 19.3249 4.06024 18.2939 4.06024C17.263 4.06024 16.4272 3.22408 16.4272 2.19261C16.4272 1.16115 17.263 0.324951 18.2939 0.324951Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M34.7209 0.325302C35.7519 0.325302 36.5876 1.16147 36.5876 2.19293C36.5876 3.2244 35.7519 4.06056 34.7209 4.06056C33.69 4.06056 32.8542 3.2244 32.8542 2.19293C32.8542 1.16147 33.69 0.325302 34.7209 0.325302Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M50.9341 0.325302C51.965 0.325302 52.8008 1.16147 52.8008 2.19293C52.8008 3.2244 51.965 4.06056 50.9341 4.06056C49.9031 4.06056 49.0674 3.2244 49.0674 2.19293C49.0674 1.16147 49.9031 0.325302 50.9341 0.325302Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M66.9037 33.1956C67.9346 33.1956 68.7704 34.0318 68.7704 35.0633C68.7704 36.0947 67.9346 36.9309 66.9037 36.9309C65.8727 36.9309 65.037 36.0947 65.037 35.0633C65.037 34.0318 65.8727 33.1956 66.9037 33.1956Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M83.3307 33.1956C84.3616 33.1956 85.1974 34.0318 85.1974 35.0633C85.1974 36.0947 84.3616 36.9309 83.3307 36.9309C82.2997 36.9309 81.464 36.0947 81.464 35.0633C81.464 34.0318 82.2997 33.1956 83.3307 33.1956Z"
fill="white"
fill-opacity="0.08"
></path>
<path
d="M99.7576 33.1956C100.789 33.1956 101.624 34.0318 101.624 35.0633C101.624 36.0947 100.789 36.9309 99.7576 36.9309C98.7266 36.9309 97.8909 36.0947 97.8909 35.0633C97.8909 34.0318 98.7266 33.1956 99.7576 33.1956Z"
fill="white"
fill-opacity="0.08"
></path>
<path