-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
2446 lines (2406 loc) · 75.9 KB
/
blogs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>boAt blogs</title>
<link
rel="shortcut icon"
href="./assets/images/favicon.ico"
type="image/x-icon"
/>
<!-- ----Fontawesome icons kit----- -->
<script
src="https://kit.fontawesome.com/6604ef9bb8.js"
crossorigin="anonymous"
></script>
<!-- Tailwind Output CSS File -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="dist/output.css" />
<!-- Slick CSS -->
<link rel="stylesheet" type="text/css" href="./slick/slick.css" />
<link rel="stylesheet" type="text/css" href="./slick/slick-theme.css" />
<!-- Custom CSS -->
<style>
html {
scroll-behavior: smooth;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
/* For IE, Edge and Firefox */
.scrollbar-hide {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}
#categoryList {
display: none;
}
#loginCard {
display: none;
}
#menuCard {
display: none;
}
</style>
<!-- custom style by saiful -->
<link rel="stylesheet" href="customStyleBySaiful.css" />
</head>
<body class="antialiased font-metropolis">
<!-- Body Content -->
<section class="w-screen h-screen overflow-x-hidden">
<section
class="h-[38px] px-[20px] text-center flex items-center justify-center bg-announcement"
>
<a>
<p
class="text-[11px] md:text-xs px-[22px] py-2 font-medium leading-none"
>
Getting you the power of good sound. <b>boAtxMarvel</b> is Live.
Grab Now!
</p>
</a>
</section>
<!-- Top Navbar -->
<nav
class="sticky top-0 z-50 block bg-white header-smaller-tablet:h-[67px] md:h-32 xl:h-[84px] border-b"
>
<!-- Menu in mobile -->
<div
class="h-[calc(100vh-87px)] overflow-y-scroll bg-white p-4 w-[95%] top-[54px] absolute z-20"
id="menuCard"
>
<!-- Categories -->
<div class="p-4 border rounded-xl bg-[#f8f9fa]">
<div class="flex justify-between">
<h2 class="font-bold">Categories</h2>
<span class="font-bold text-[#8b8b8b]">—</span>
</div>
<div class="flex flex-wrap justify-between mt-8 gap-y-4">
<div class="w-[30%]">
<img
src="./assets/images/category-d-1.webp"
alt="True Wireless Earbuds"
/>
<p class="text-xs text-center">True Wireless Earbuds</p>
</div>
<div class="w-[30%]">
<img src="./assets/images/category-d-2.webp" alt="Neckbands" />
<p class="text-xs text-center">Neckbands</p>
</div>
<div class="w-[30%]">
<img
src="./assets/images/category-d-3.webp"
alt="Smart Watches"
/>
<p class="text-xs text-center">Smart Watches</p>
</div>
<div class="w-[30%]">
<img
src="./assets/images/category-d-4.webp"
alt="Wireless Headphones"
/>
<p class="text-xs text-center">Wireless Headphones</p>
</div>
<div class="w-[30%]">
<img
src="./assets/images/category-d-5.webp"
alt="Wireless Speakers"
/>
<p class="text-xs text-center">Wireless Speakers</p>
</div>
<div class="w-[30%]">
<img
src="./assets/images/category-d-6.webp"
alt="Wired Headphones"
/>
<p class="text-xs text-center">Wired Headphones</p>
</div>
<div class="w-[30%]">
<img
src="./assets/images/category-d-7.webp"
alt="Wired Earphones"
/>
<p class="text-xs text-center">Wired Earphones</p>
</div>
<div class="w-[30%]">
<img src="./assets/images/category-d-8.webp" alt="Soundbars" />
<p class="text-xs text-center">Soundbars</p>
</div>
<div class="w-[30%]">
<img
src="./assets/images/category-d-9.webp"
alt="Gaming Headphones"
/>
<p class="text-xs text-center">Gaming Headphones</p>
</div>
</div>
<p
class="flex items-center justify-center gap-2 mt-6 font-bold text-center text-button-blue"
>
Expand More
<svg
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
viewBox="0 0 14 14"
>
<path
id="Path_337386"
data-name="Path 337386"
d="M8.159,2.693a6.7,6.7,0,0,0,2.7-.551A7.172,7.172,0,0,0,13.095.625,7.133,7.133,0,0,0,14.608-1.6a6.735,6.735,0,0,0,.548-2.706,6.7,6.7,0,0,0-.551-2.7A7.216,7.216,0,0,0,13.087-9.25a7.041,7.041,0,0,0-2.234-1.513,6.781,6.781,0,0,0-2.7-.544,6.755,6.755,0,0,0-2.7.544A7.1,7.1,0,0,0,3.22-9.25,7.134,7.134,0,0,0,1.7-7.012a6.742,6.742,0,0,0-.548,2.7A6.7,6.7,0,0,0,1.706-1.6,7.184,7.184,0,0,0,3.223.625a7.184,7.184,0,0,0,2.23,1.517A6.7,6.7,0,0,0,8.159,2.693Zm0-1.283A5.609,5.609,0,0,1,5.932.968,5.741,5.741,0,0,1,4.109-.261,5.692,5.692,0,0,1,2.885-2.084a5.648,5.648,0,0,1-.44-2.226,5.648,5.648,0,0,1,.44-2.226A5.692,5.692,0,0,1,4.109-8.36,5.7,5.7,0,0,1,5.929-9.585a5.622,5.622,0,0,1,2.223-.44,5.675,5.675,0,0,1,2.23.44A5.681,5.681,0,0,1,12.208-8.36a5.692,5.692,0,0,1,1.225,1.823,5.648,5.648,0,0,1,.44,2.226,5.648,5.648,0,0,1-.44,2.226A5.692,5.692,0,0,1,12.208-.261,5.741,5.741,0,0,1,10.385.968,5.609,5.609,0,0,1,8.159,1.411Zm3.5-5.735a.637.637,0,0,0-.209-.44l-2.306-2.3a.541.541,0,0,0-.389-.144.5.5,0,0,0-.371.151.507.507,0,0,0-.148.367.526.526,0,0,0,.166.4l.843.821.793.648L8.62-4.887H5.183a.528.528,0,0,0-.4.162.557.557,0,0,0-.155.4.553.553,0,0,0,.155.4.535.535,0,0,0,.4.159H8.62l1.419-.058-.793.656L8.4-2.35a.5.5,0,0,0-.166.389.528.528,0,0,0,.148.378.491.491,0,0,0,.371.155.529.529,0,0,0,.389-.159l2.306-2.291A.627.627,0,0,0,11.661-4.325Z"
transform="translate(-1.155 11.307)"
fill="#2f5b96"
></path>
</svg>
</p>
</div>
<!-- Links -->
<div class="flex flex-col px-4 mt-6 gap-y-8">
<a
class="flex justify-between font-bold cursor-pointer"
href="deals.html"
>
<p>Daily Deals</p>
<img class="w-[9px]" src="./assets/images/next.svg" alt="Next" />
</a>
<a
class="flex justify-between font-bold cursor-pointer"
href="gift.html"
>
<p>Gift with boAt</p>
<img class="w-[9px]" src="./assets/images/next.svg" alt="Next" />
</a>
<a
class="flex justify-between font-bold cursor-pointer"
href="mailto:nirzonk47@gmail.com?subject=Feedback"
>
<p>Bulk Orders</p>
<img class="w-[9px]" src="./assets/images/next.svg" alt="Next" />
</a>
<a
class="flex justify-between font-bold cursor-pointer"
href="blogs.html"
>
<p>Blogs</p>
<img class="w-[9px]" src="./assets/images/next.svg" alt="Next" />
</a>
<a
class="flex justify-between font-bold cursor-pointer"
href="index.html"
>
<p>Track your order</p>
<img class="w-[9px]" src="./assets/images/next.svg" alt="Next" />
</a>
</div>
</div>
<div class="flex flex-col items-center justify-center h-full">
<!-- Top Section -->
<div class="flex justify-between w-full px-3 py-4 mx-auto md:px-10">
<!-- Category hover menu -->
<ul
class="bg-white p-5 top-[84px] absolute w-[94%]"
id="categoryList"
>
<div class="flex flex-wrap mx-auto gap-y-2">
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-1.webp"
alt="True Wireless Earbuds"
/>
<p class="text-xs font-medium">True Wireless Earbuds</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-2.webp"
alt="Neckbands"
/>
<p class="text-xs font-medium">Neckbands</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-3.webp"
alt="Smartwatches"
/>
<p class="text-xs font-medium">Smartwatches</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-5.webp"
alt="Wireless Speakers"
/>
<p class="text-xs font-medium">Wireless Speakers</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-6.webp"
alt="Wired Headphones"
/>
<p class="text-xs font-medium">Wired Headphones</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-7.webp"
alt="Wired Earphones"
/>
<p class="text-xs font-medium">Wired Earphones</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-8.webp"
alt="Soundbars"
/>
<p class="text-xs font-medium">Soundbars</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-9.webp"
alt="Gaming Headphones"
/>
<p class="text-xs font-medium">Gaming Headphones</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-10.webp"
alt="Party Speakers"
/>
<p class="text-xs font-medium">Party Speakers</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-11.webp"
alt="Trimmers"
/>
<p class="text-xs font-medium">Trimmers</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-12.webp"
alt="Chargers"
/>
<p class="text-xs font-medium">Chargers</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-13.webp"
alt="Power Banks"
/>
<p class="text-xs font-medium">Power Banks</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-14.webp"
alt="Cables"
/>
<p class="text-xs font-medium">Cables</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-15.webp"
alt="Car Accessories"
/>
<p class="text-xs font-medium">Car Accessories</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/superhero.webp"
alt="Superhero Collection"
/>
<p class="text-xs font-medium">Superhero Collection</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-16.webp"
alt="Trebel for Women"
/>
<p class="text-xs font-medium">Trebel for Women</p>
</li>
<!-- List item -->
<li class="flex items-center gap-x-1 w-[18vw] cursor-pointer">
<img
class="w-[50px] h-[50px]"
src="./assets/images/category-d-17.webp"
alt="Limited Editions"
/>
<p class="text-xs font-medium">Limited Editions</p>
</li>
</div>
</ul>
<!-- Left Section for mobile + tablet -->
<div class="flex gap-12">
<section class="flex items-center gap-5 w-[85px] xl:hidden">
<img
class="h-[14px] cursor-pointer"
id="menuButton"
src="./assets/images/hamburger-icon.png"
alt="burger menu icon"
/>
<a href="index.html" class="md:hidden">
<img
class="h-auto w-[60px] header-smaller-tablet:w-[85px]"
src="./assets/images/logo.svg"
height="62"
width="151"
alt="boat logo"
/>
</a>
</section>
<!-- Links section -->
<section class="hidden xl:flex gap-x-7">
<!-- Categories -->
<a
href="#"
class="flex items-center duration-150 ease-in-out gap-x-2 hover:underline decoration-transparent underline-offset-4 hover:decoration-boat-red hover:font-bold decoration-2"
id="categoryOption"
>
<p>Categories</p>
<svg
style="rotate: 90deg !important"
focusable="false"
width="7"
height="10"
class="icon icon--dropdown-arrow-right icon--direction-aware"
viewBox="0 0 7 10"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M3.9394 5L0.469727 1.53033L1.53039 0.469666L6.06072 5L1.53039 9.53032L0.469727 8.46967L3.9394 5Z"
fill="currentColor"
></path>
</svg>
</a>
<!-- Daily Deals -->
<a
href="./deals.html"
class="flex items-center duration-150 ease-in-out gap-x-2 hover:underline decoration-transparent underline-offset-4 hover:decoration-boat-red hover:font-bold decoration-2"
>
<p>Daily Deals</p>
</a>
<!-- Gift with boAt -->
<a
href="./gift.html"
class="flex items-center duration-150 ease-in-out gap-x-2 hover:underline decoration-transparent underline-offset-4 hover:decoration-boat-red hover:font-bold decoration-2"
>
<p>Gift with boAt</p>
</a>
<!-- Bulk Orders -->
<a
href="mailto:nirzonk47@gmail.com?subject=Feedback"
class="flex items-center duration-150 ease-in-out gap-x-2 hover:underline decoration-transparent underline-offset-4 hover:decoration-boat-red hover:font-bold decoration-2"
>
<p>Bulk Orders</p>
</a>
<!-- More -->
<a
href=""
class="flex items-center duration-150 ease-in-out gap-x-2 hover:underline decoration-transparent underline-offset-4 hover:decoration-boat-red hover:font-bold decoration-2"
>
<p>Blogs</p>
</a>
</section>
</div>
<!-- Logo for tablet + -->
<section class="hidden md:inline-block xl:order-[-1]">
<a href="index.html">
<img
class="h-auto w-[60px] header-smaller-tablet:w-[85px]"
src="./assets/images/logo.svg"
height="62"
width="151"
alt="boat logo"
/>
</a>
</section>
<!-- Right Section -->
<section
class="flex items-center gap-5 w-[85px] justify-end xl:w-auto relative"
>
<div class="justify-center hidden w-full xl:flex">
<div class="relative">
<input
class="leading-5 rounded-[32px] bg-search-in-header bg-[#f4f5f7] bg-no-repeat py-[11px] px-[35px] mx-auto min-w-[300px] pointer-events-auto outline-none"
type="text"
/>
<div
class="absolute text-carousel bottom-2 left-[40px] text-[15px] text-[#4e5358] pointer-events-none"
>
<p>Search <span class="font-bold">"Earphones"</span></p>
<p>Search <span class="font-bold">"Smartwatches"</span></p>
<p>Search <span class="font-bold">"Speakers"</span></p>
</div>
</div>
</div>
<img
class="w-5 h-5 cursor-pointer header-smaller-tablet:hidden"
src="./assets/images/search.webp"
alt="Search icon"
/>
<img
class="hidden header-smaller-tablet:block h-[22px] w-[22px] cursor-pointer"
src="./assets/images/profile.webp"
alt="User Profile"
id="login"
/>
<img
class="cursor-pointer"
src="./assets/images/bag.svg"
alt="Shopping bag"
/>
<!-- Login Card -->
<div
class="absolute p-[10px] bg-white border-2 xl:top-[3.5rem] text-boat-red xl:w-1/2 rounded md:w-[150%] md:top-[6rem] md:-left-[4rem] xl:left-[10rem]"
id="loginCard"
>
<div
class="font-bold text-[14px] w-full flex justify-between items-center"
>
<p>Hi boAtHead</p>
<span class="text-3xl cursor-pointer" id="closeCard">×</span>
</div>
<button
class="w-full text-white bg-boat-red font-bold text-[14px] py-[4px] mt-4"
>
Login
</button>
</div>
</section>
</div>
<!-- Search Bar -->
<div class="justify-center hidden w-full md:flex xl:hidden">
<div class="relative">
<input
class="leading-5 rounded-[32px] bg-search-in-header bg-[#f4f5f7] bg-no-repeat py-[11px] px-[35px] mx-auto min-w-[300px] pointer-events-auto"
type="text"
/>
<div
class="absolute text-carousel bottom-2 left-[40px] text-[15px] text-[#4e5358] pointer-events-none"
>
<p>Search <span class="font-bold">"Earphones"</span></p>
<p>Search <span class="font-bold">"Smartwatches"</span></p>
<p>Search <span class="font-bold">"Speakers"</span></p>
</div>
</div>
</div>
</div>
</nav>
<img
class="fixed rounded-full w-11 right-3 bottom-2"
src="https://cdn.shopify.com/s/files/1/0057/8938/4802/files/Chat-Icon.jpg?v=1690367119"
alt=""
/>
<!--First carosel-->
<div>
<div class="w-screen saurabhCarousel md:hidden">
<div>
<img
class="w-screen md:hidden"
src="https://www.boat-lifestyle.com/cdn/shop/files/News_mobile_851d1a00-ec8d-4815-8d5c-0b65d29e2c91_600x.png?v=1688372087"
alt=""
/>
</div>
<div>
<img
class="w-screen md:hidden"
src="https://www.boat-lifestyle.com/cdn/shop/files/AD115_47750039-5439-4f4b-9f68-a7a69d0fc3d3_600x.png?v=1687717968"
alt=""
/>
</div>
</div>
</div>
<!--First carosel for width is greater than md-->
<div>
<div class="hidden object-cover w-screen md:block saurabhCarousel">
<div>
<img
class="object-cover w-screen"
src="https://www.boat-lifestyle.com/cdn/shop/files/blog_banners-min_1600x.png?v=1689063992"
alt=""
/>
</div>
<div>
<img
class="object-cover w-screen"
src="https://www.boat-lifestyle.com/cdn/shop/files/AD115_Desktop_1440x.png?v=1687717954"
alt=""
/>
</div>
</div>
</div>
<!--Trending-->
<div class="flex justify-between m-5">
<h1 class="text-2xl">
Trending
<span class="font-bold"
>Blo<span
class="underline underline-offset-[6px] decoration-red-600"
>gs</span
>
</span>
</h1>
<div class="flex">
<p class="text-sky-900">View All</p>
<svg
class="ml-1 text-sky-900"
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-circle-arrow-right"
width="20"
height="20"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#597e8d"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18" />
<path d="M16 12l-4 -4" />
<path d="M16 12h-8" />
<path d="M12 16l4 -4" />
</svg>
</div>
</div>
<!--Trending cards-->
<div class="flex flex-col flex-wrap overflow-scroll h-96 scrollbar-hide">
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/1_1_600x.jpg?Morev=1695929892"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
How Custom Watch Faces Enhance Your Daily Routine
</h1>
<div class="flex justify-between">
<p class="text-slate-500">22 Sep, 2023</p>
<p class="text-green-500">3 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/5_1_600x.jpg?v=1695894844"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
Customising Your Smartwatch For Your Every Requirement
</h1>
<div class="flex justify-between">
<p class="text-slate-500">21 Sep, 2023</p>
<p class="text-green-500">5 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/6_600x.jpg?v=1695815684"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
Cricket Training Goes High-tech: Revolutionising the Game...
</h1>
<div class="flex justify-between">
<p class="text-slate-500">20 Sep, 2023</p>
<p class="text-green-500">4 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/banner_600x.png?v=1688023063"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
boAt's First Dolby Power Neckband with Hybrid ANC Feature...
</h1>
<div class="flex justify-between">
<p class="text-slate-500">11 Jul, 2023</p>
<p class="text-green-500">5 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/blog_banner_street_fashion_1_600x.png?v=1684135161"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">The Sidewalk Runway</h1>
<div class="flex justify-between">
<p class="text-slate-500">15 May, 2023</p>
<p class="text-green-500">4 min read</p>
</div>
</div>
</div>
</div>
<!--News-->
<div class="flex justify-between m-5">
<h1 class="text-2xl">
Latest
<span class="font-bold"
>Ne<span class="underline decoration-red-600">ws</span>
</span>
</h1>
<div class="flex">
<p class="text-sky-900">View All</p>
<svg
class="ml-1 text-sky-900"
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-circle-arrow-right"
width="20"
height="20"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#597e8d"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18" />
<path d="M16 12l-4 -4" />
<path d="M16 12h-8" />
<path d="M12 16l4 -4" />
</svg>
</div>
</div>
<!--News cards start from here-->
<div
class="flex flex-col flex-wrap mb-6 overflow-scroll h-96 scrollbar-hide"
>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/blog_banner1_600x.png?v=1676377102"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
Social Welfare Initiatives 2022 - A Look Back
</h1>
<div class="flex justify-between">
<p class="text-slate-500">15 Feb, 2023</p>
<p class="text-green-500">3 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/News_700x.png?v=1667822120"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
Scaling Up With New Conviction: boAt Raises INR 500 Crore...
</h1>
<div class="flex justify-between">
<p class="text-slate-500">07 Nov, 2022</p>
<p class="text-green-500">3 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/Blog-1_700x.jpg?v=1664539128"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
Imagine Marketing India Ranked Amongst The Top 5 Wearable...
</h1>
<div class="flex justify-between">
<p class="text-slate-500">30 Sep, 2022</p>
<p class="text-green-500">2 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/News-Banner-png_700x.png?v=1655731912"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
boAt And DC Comics Collaborate to Launch New Audiowear De...
</h1>
<div class="flex justify-between">
<p class="text-slate-500">20 Jun, 2022</p>
<p class="text-green-500">1 min read</p>
</div>
</div>
</div>
<div
class="mx-5 h-96 w-3/4 rounded-xl bg-gray-50 border border-slate-200 lg:w-[30%]"
>
<img
class="w-full h-3/4 rounded-t-xl"
src="https://www.boat-lifestyle.com/cdn/shop/articles/img_174157_amanguptaandsameermehta_700x.jpg?v=1654850612"
alt=""
/>
<div class="flex flex-col justify-between w-full p-3 h-1/4">
<h1 class="font-bold">
The Bro Code - Meet The Sound Industry's New Disruptors
</h1>
<div class="flex justify-between">
<p class="text-slate-500">05 May, 2022</p>
<p class="text-green-500">7 min read</p>
</div>
</div>
</div>
</div>
<footer class="mx-4 footer">
<!-- ---footer first section ---- -->
<div
class="footer-item-list bg-[#eff4f7] py-6 px-4 header-smaller-tablet:px-10 md:pt-8 items-start flex flex-wrap lg:justify-between"
>
<!-- --first column--- -->
<div class="w-full lg:w-[30%]">
<!-- logo -->
<div class="logo max-w-[150px] mx-auto w-full lg:mx-0 mb-4">
<a href="" class="">
<img
src="https://www.boat-lifestyle.com/cdn/shop/files/boAt_logo_small_3067da8c-a83b-46dd-b28b-6ef1e16ccd17_small.svg?v=1693549434"
alt="logo"
srcset=""
/>
</a>
</div>
<p
class="text[#293036] font-semibold text-2xl text-center lg:text-left mb-1"
>
Subscribe to our email alerts!
</p>
<div
class="input-box h-12 bg-white border border-[#e1e6eb] flex items-center justify-between rounded-xl"
>
<input
type="text"
class="w-11/12 px-3 text-sm outline-none lg:w-10/12"
placeholder="Enter you email address"
/>
<button class="flex items-center justify-center w-1/12">
<span
class="w-5 h-5 rounded-full border border-[#929ba2] flex justify-center items-center"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="9.27"
height="10"
class="h-2.5 align-middle"
viewBox="0 0 8.27 14.473"
>
<path
id="Path_340747"
data-name="Path 340747"
d="M.28.277a.961.961,0,0,1,1.349,0L7.991,6.569a.936.936,0,0,1,0,1.334L1.628,14.2a.961.961,0,0,1-1.349,0,.935.935,0,0,1,0-1.334L5.966,7.237.28,1.611A.935.935,0,0,1,.28.277Z"
fill="#868c91"
fill-rule="evenodd"
></path>
</svg>
</span>
</button>
</div>
</div>
<!-- right columns only for large or above screens--- -->
<div
class="box-border items-start justify-between w-8/12 mt-6 first-right-columns md:w-full lg:w-7/12 lg:mt-0 md:flex lg:pl-5"
>
<!-- right first column--- -->
<div class="footer__item w-3/12 md:w-4/12 xl:w-[30%]">
<p class="mb-3 text-sm font-semibold desktop_menu_link">Shop</p>
<div class="hidden footer__item-content md:block">
<ul
class="flex flex-wrap justify-between leading-4 list-none linklist"
>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">True Wireless Earbuds</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Wire Headphones</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Wired Headphones</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Wireless Speakers</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Home Audio</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Mobile Accessories</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Smart Watches</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">TRebel</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Misfit</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Gift Card</a>
</li>
<li class="pt-2.5 w-[45%]">
<a href="" class="text-xs">Earn ₹100</a>
</li>
</ul>
</div>
</div>
<!-- right second column--- -->
<div class="footer__item w-3/12 xl:w-[30%]">
<p class="mb-3 text-sm font-semibold desktop_menu_link">Help</p>
<div class="hidden footer__item-content md:block">
<ul
class="flex flex-wrap justify-between leading-4 list-none linklist"
>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Track Your Orders</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Warranty & Supports</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Return Policy</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Service Centers</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Bulk Orders</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">FAQs</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Why Buy Direct</a>
</li>
</ul>
</div>
</div>
<!-- right third column--- -->
<div class="footer__item w-3/12 xl:w-[30%]">
<p class="mb-3 text-sm font-semibold desktop_menu_link">
Company
</p>
<div class="hidden footer__item-content md:block">
<ul
class="flex flex-wrap justify-between leading-4 list-none linklist"
>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">About boAt</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">News</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Read Our Blog</a>
</li>
<li class="pt-2.5 w-full">
<a href="" class="text-xs">Careers</a>
</li>
<li class="pt-2.5 w-full">