-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
314 lines (313 loc) · 27 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
<!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>Biker Zone</title>
<link rel="stylesheet" href="./output/tailwind.css">
</head>
<body class=''>
<header class='container px-8 mx-auto md:px-12'>
<!-- Navbar -->
<nav class="bg-white border-gray-200 px-2 sm:px-4 py-2.5 rounded dark:bg-gray-900">
<div class="container flex flex-wrap items-center justify-between mx-auto">
<a href="" class="flex items-center">
<h1 class='text-[#000000] text-3xl md:text-4xl font-semibold md:font-bold'>Bike Dekho</h1>
</a>
<button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 ml-3 text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-default" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-6 h-6" aria-hidden="true" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"></path></svg>
</button>
<div class="hidden w-full md:block md:w-auto" id="navbar-default">
<ul class="flex flex-col h-full p-4 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium md:border-0 md:bg-white dark:bg-gray-800 md:dark:bg-gray-900 dark:border-gray-700">
<li class='my-auto'>
<a href="#" class="block py-2 pl-3 pr-4 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 dark:text-white" aria-current="page">Home</a>
</li>
<li class='my-auto'>
<a href="#" class="block py-2 pl-3 pr-4 text-gray-700 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Shop</a>
</li>
<li class='my-auto'>
<a href="#" class="block py-2 pl-3 pr-4 text-gray-700 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">News</a>
</li>
<li class='my-auto'>
<a href="#" class="block py-2 pl-3 pr-4 text-gray-700 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Contact</a>
</li>
<li>
<button class='bg-[#E76F51] py-4 px-8 md:px-12 rounded-md text-white font-bold text-xl'><a href="#" class="block py-2 pl-3 pr-4 text-white rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Contact</a></button>
</li>
</ul>
</div>
</div>
</nav>
<!-- Carousel -->
<div id="default-carousel" class="relative w-full h-screen mt-12 bg-[#264653]" data-carousel="slide">
<!-- Carousel wrapper -->
<div class="relative h-screen overflow-hidden rounded-lg md:h-[500px]">
<!-- Item 1 -->
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<div class='grid grid-cols-1 gap-8 p-8 md:grid-cols-2 md:p-24'>
<div>
<h1 class='mb-5 text-3xl font-bold text-black md:text-6xl'>Ride-on R15 V4 <br> with Smile</h1>
<p class='mb-6 text-base font-light'>Amet minim mollit non deserunt ullamco <br> est sit aliqua dolor do amet sint. Velit officia consequat <br> duis enim velit mollit.</p>
<button class='bg-[#E76F51] py-4 px-8 md:px-12 rounded-md text-white font-bold text-xl'>Purchase</button>
</div>
<div>
<img class='h-full' src="src/images/header-bike.png" alt="">
</div>
</div>
</div>
<!-- Item 2 -->
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<div class='grid grid-cols-1 gap-8 p-8 md:grid-cols-2 md:p-24'>
<div>
<h1 class='mb-5 text-3xl font-bold text-black md:text-6xl'>Ride-on R15 V4 <br> with Smile</h1>
<p class='mb-6 text-base font-light'>Amet minim mollit non deserunt ullamco <br> est sit aliqua dolor do amet sint. Velit officia consequat <br> duis enim velit mollit.</p>
<button class='bg-[#E76F51] py-4 px-8 md:px-12 rounded-md text-white font-bold text-xl'>Purchase</button>
</div>
<div>
<img src="src/images/bike-8.png" alt="">
</div>
</div>
</div>
<!-- Item 3 -->
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<div class='grid grid-cols-1 gap-8 p-8 md:grid-cols-2 md:p-24'>
<div>
<h1 class='mb-5 text-3xl font-bold text-black md:text-6xl'>Ride-on R15 V4 <br> with Smile</h1>
<p class='mb-6 text-base font-light'>Amet minim mollit non deserunt ullamco <br> est sit aliqua dolor do amet sint. Velit officia consequat <br> duis enim velit mollit.</p>
<button class='bg-[#E76F51] py-4 px-8 md:px-12 rounded-md text-white font-bold text-xl'>Purchase</button>
</div>
<div>
<img src="src/images/bike-6.png" alt="">
</div>
</div>
</div>
<!-- Item 4 -->
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<div class='grid grid-cols-1 gap-8 p-8 md:grid-cols-2 md:p-24'>
<div>
<h1 class='mb-5 text-3xl font-bold text-black md:text-6xl'>Ride-on R15 V4 <br> with Smile</h1>
<p class='mb-6 text-base font-light'>Amet minim mollit non deserunt ullamco <br> est sit aliqua dolor do amet sint. Velit officia consequat <br> duis enim velit mollit.</p>
<button class='bg-[#E76F51] py-4 px-8 md:px-12 rounded-md text-white font-bold text-xl'>Purchase</button>
</div>
<div>
<img src="src/images/bike-7.png" alt="">
</div>
</div>
</div>
<!-- Item 5 -->
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<div class='grid grid-cols-1 gap-8 p-8 md:grid-cols-2 md:p-24'>
<div>
<h1 class='mb-5 text-3xl font-bold text-black md:text-6xl'>Ride-on R15 V4 <br> with Smile</h1>
<p class='mb-6 text-base font-light'>Amet minim mollit non deserunt ullamco <br> est sit aliqua dolor do amet sint. Velit officia consequat <br> duis enim velit mollit.</p>
<button class='bg-[#E76F51] py-4 px-8 md:px-12 rounded-md text-white font-bold text-xl'>Purchase</button>
</div>
<div>
<img src="src/images/Bike 2.png" alt="">
</div>
</div>
</div>
</div>
<!-- Slider indicators -->
<div class="absolute z-30 flex space-x-3 -translate-x-1/2 bottom-5 left-1/2">
<button type="button" class="w-3 h-3 rounded-full" aria-current="true" aria-label="Slide 1" data-carousel-slide-to="0"></button>
<button type="button" class="w-3 h-3 rounded-full" aria-current="false" aria-label="Slide 2" data-carousel-slide-to="1"></button>
<button type="button" class="w-3 h-3 rounded-full" aria-current="false" aria-label="Slide 3" data-carousel-slide-to="2"></button>
<button type="button" class="w-3 h-3 rounded-full" aria-current="false" aria-label="Slide 4" data-carousel-slide-to="3"></button>
<button type="button" class="w-3 h-3 rounded-full" aria-current="false" aria-label="Slide 5" data-carousel-slide-to="4"></button>
</div>
<!-- Slider controls -->
<button type="button" class="absolute top-0 left-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none" data-carousel-prev>
<span class="inline-flex items-center justify-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-gray-400 dark:group-focus:ring-gray-800/70 group-focus:outline-none">
<svg aria-hidden="true" class="w-5 h-5 text-black sm:w-6 sm:h-6 dark:text-gray-800" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path></svg>
<span class="sr-only">Previous</span>
</span>
</button>
<button type="button" class="absolute top-0 right-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none" data-carousel-next>
<span class="inline-flex items-center justify-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
<svg aria-hidden="true" class="w-5 h-5 text-black sm:w-6 sm:h-6 dark:text-gray-800" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span class="sr-only">Next</span>
</span>
</button>
</div>
</header>
<!-- Main -->
<main class='container mx-auto px-8 md:px-12 mt-12 md:mt-16 bg-[#E5E5E5]'>
<!-- Featured Bike Section -->
<section>
<h1 class='text-3xl font-semibold text-center text-black md:text-5xl'>Featured Bikes In This Year</h1>
<p class='text-center font-semibold text-base text-[#E76F51] mb-12'>Best bike collection</p>
<div class='flex flex-col justify-between gap-8 md:flex-row'>
<img class='w-full md:w-56 grayscale' src="src/images/feature-bike.jpg" alt="">
<img class='w-full md:w-56' src="src/images/feature-bike.jpg" alt="">
<img class='w-full md:w-56 grayscale' src="src/images/feature-bike.jpg" alt="">
</div>
</section>
<!-- Latest News Section -->
<section class='mt-32'>
<h1 class='text-[#0A0826] text-3xl md:text-5xl font-semibold text-center mb-12'>Latest News</h1>
<div class='grid grid-cols-1 gap-5 md:grid-cols-3'>
<!-- 1st News -->
<div class='p-5 bg-white rounded-md shadow-md'>
<img class='mb-10' src="src/images/bike-1.png" alt="">
<h3 class='text-[#18191F] font-medium text-2xl md:text-[28px] mb-[10px]'>Ducati XDIAVEL S-73</h3>
<p class='text-[#6C6C6C] font-normal text-base mb-10'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lacus, fermentum amet faucibus sed id nisi lectus at.</p>
<button class='outline outline-[#E76F51] py-4 px-8 md:px-12 rounded-md hover:bg-[#E76F51] text-[#E76F51] hover:text-white font-bold text-xl'>Read More</button>
</div>
<!-- 2nd News -->
<div class='p-5 bg-white rounded-md shadow-md'>
<img class='mb-10' src="src/images/bike-2.png" alt="">
<h3 class='text-[#18191F] font-medium text-2xl md:text-[28px] mb-[10px]'>Motorcycles & Scooters</h3>
<p class='text-[#6C6C6C] font-normal text-base mb-10'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lacus, fermentum amet faucibus sed id nisi lectus at.</p>
<button class='outline outline-[#E76F51] py-4 px-8 md:px-12 rounded-md hover:bg-[#E76F51] text-[#E76F51] hover:text-white font-bold text-xl'>Read More</button>
</div>
<!-- 3rd News -->
<div class='p-5 bg-white rounded-md shadow-md'>
<img class='mb-10' src="src/images/bike-3.png" alt="">
<h3 class='text-[#18191F] font-medium text-2xl md:text-[28px] mb-[10px]'>2021 Honda CBR500R</h3>
<p class='text-[#6C6C6C] font-normal text-base mb-10'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lacus, fermentum amet faucibus sed id nisi lectus at.</p>
<button class='outline outline-[#E76F51] py-4 px-8 md:px-12 rounded-md hover:bg-[#E76F51] text-[#E76F51] hover:text-white font-bold text-xl'>Read More</button>
</div>
</div>
</section>
<!-- Clients say Section -->
<section class='mt-32'>
<h1 class='text-[#0A0826] text-3xl md:text-5xl font-medium text-center mb-12'>Happy <span class='text-[#E76F51]'>Clients says</span></h1>
<div class='grid grid-cols-1 gap-10 md:grid-cols-3'>
<!-- 1st client -->
<div class='rounded-md border border-[#DEDEDE] bg-white py-10 px-6 md:px-[35px] text-center'>
<img class='w-full md:w-[149px] mx-auto mb-[30px]' src="src/images/user-1.png" alt="">
<p class='text-[#6C6C6C] mb-[15px]'>Slate helps you see how <br> many more days you need <br> to work to reach your financial <br> goal for the month and year.</p>
<div class='flex justify-center gap-[6px]'>
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-half-stroke-solid.svg" alt="">
</div>
<h3 class='mt-[15px] text-[#23A6F0] font-semibold text-base mb-[15px]'>Regina Miles</h3>
<h5 class='text-[#252B42] font-semibold text-sm'>Banker</h5>
</div>
<!-- 2nd client -->
<div class='rounded-md border border-[#DEDEDE] bg-white py-10 px-6 md:px-[35px] text-center'>
<img class='w-full md:w-[149px] mx-auto mb-[30px]' src="src/images/user-2.png" alt="">
<p class='text-[#6C6C6C] mb-[15px]'>Slate helps you see how <br> many more days you need <br> to work to reach your financial <br> goal for the month and year.</p>
<div class='flex justify-center gap-[6px]'>
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-half-stroke-solid.svg" alt="">
</div>
<h3 class='mt-[15px] text-[#23A6F0] font-semibold text-base mb-[15px]'>Regina Miles</h3>
<h5 class='text-[#252B42] font-semibold text-sm'>Banker</h5>
</div>
<!-- 3rd client -->
<div class='rounded-md border border-[#DEDEDE] bg-white py-10 px-6 md:px-[35px] text-center'>
<img class='w-full md:w-[149px] mx-auto mb-[30px]' src="src/images/user-3.png" alt="">
<p class='text-[#6C6C6C] mb-[15px]'>Slate helps you see how <br> many more days you need <br> to work to reach your financial <br> goal for the month and year.</p>
<div class='flex justify-center gap-[6px]'>
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-solid.svg" alt="">
<img class='w-4' src="src/images/icons/star-half-stroke-solid.svg" alt="">
</div>
<h3 class='mt-[15px] text-[#23A6F0] font-semibold text-base mb-[15px]'>Regina Miles</h3>
<h5 class='text-[#252B42] font-semibold text-sm'>Banker</h5>
</div>
</div>
</section>
<!-- FAQ -->
<section class='mt-12 md:mt-16'>
<h1 class='text-[#0D0925] font-semibold text-3xl md:text-5xl text-center mb-12'>Frequently Asked <span class='text-[#E76F51]'>Questions</span></h1>
<div class='grid grid-cols-1 gap-10 md:grid-cols-2'>
<div>
<img src="src/images/faq.png" alt="">
</div>
<div>
<!-- Accordion Start -->
<div id="accordion-open" data-accordion="open">
<!-- 1st Question -->
<h2 id="accordion-open-heading-1">
<button type="button" class="flex items-center justify-between w-full p-5 font-medium text-left text-[#383838] text-xl bg-white rounded-md border border-b-0 border-gray-200 rounded-t-xl focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:border-gray-700 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-800 mb-3" data-accordion-target="#accordion-open-body-1" aria-expanded="true" aria-controls="accordion-open-body-1">
<span class="flex items-center"><svg class="w-5 h-5 mr-2 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"></path></svg> What are the most important things I should <br> know about riding a bike?</span>
<svg data-accordion-icon class="w-6 h-6 rotate-180 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
</h2>
<div id="accordion-open-body-1" class="hidden" aria-labelledby="accordion-open-heading-1">
<div class="p-5 font-light border border-b-0 border-gray-200 dark:border-gray-700 dark:bg-gray-900">
<p class="mb-2 text-[#7E848C] dark:text-gray-400">Safety First! Always obey the rules of the road. Obey all traffic signals, signs, and laws. Get in the mindset of “driving” your bike—not just “riding” your bike. This will help you be a more focused and legally compliant bike rider. </p>
</div>
</div>
<!-- 2nd Question -->
<h2 id="accordion-open-heading-2">
<button type="button" class="flex items-center justify-between w-full p-5 font-medium text-left text-[#383838] text-xl bg-white rounded-md border border-b-0 border-gray-200 focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:border-gray-700 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-800 mb-3" data-accordion-target="#accordion-open-body-2" aria-expanded="false" aria-controls="accordion-open-body-2">
<span class="flex items-center"><svg class="w-5 h-5 mr-2 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"></path></svg>How can I tell if my helmet is old and I need a <br> new one?</span>
<svg data-accordion-icon class="w-6 h-6 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
</h2>
<div id="accordion-open-body-2" class="hidden" aria-labelledby="accordion-open-heading-2">
<div class="p-5 font-light border border-b-0 border-gray-200 dark:border-gray-700">
<p class="mb-2 text-[#7E848C] dark:text-gray-400">Helmet Solution:</p>
</div>
</div>
<!-- 3rd Question -->
<h2 id="accordion-open-heading-3">
<button type="button" class="flex items-center justify-between w-full p-5 font-medium text-left text-[#383838] text-xl bg-white rounded-md border border-[#D5E5FB] focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:border-gray-700 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-800 mb-3" data-accordion-target="#accordion-open-body-3" aria-expanded="false" aria-controls="accordion-open-body-3">
<span class="flex items-center"><svg class="w-5 h-5 mr-2 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"></path></svg> My bike has been in storage is it safe to ride?</span>
<svg data-accordion-icon class="w-6 h-6 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
</h2>
<div id="accordion-open-body-3" class="hidden" aria-labelledby="accordion-open-heading-3">
<div class="p-5 font-light border border-t-0 border-gray-200 dark:border-gray-700">
<p class="mb-2 text-[#7E848C] dark:text-gray-400">Safety:</p>
</div>
</div>
<!-- 4th Question -->
<h2 id="accordion-open-heading-4">
<button type="button" class="flex items-center justify-between w-full p-5 font-medium text-left text-[#383838] text-xl bg-white rounded-md border border-[#D5E5FB] focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:border-gray-700 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-800" data-accordion-target="#accordion-open-body-4" aria-expanded="false" aria-controls="accordion-open-body-4">
<span class="flex items-center"><svg class="w-5 h-5 mr-2 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"></path></svg> What rules should I follow when riding my bike?</span>
<svg data-accordion-icon class="w-6 h-6 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
</h2>
<div id="accordion-open-body-4" class="hidden" aria-labelledby="accordion-open-heading-4">
<div class="p-5 font-light border border-t-0 border-gray-200 dark:border-gray-700">
<p class="mb-2 text-[#7E848C] dark:text-gray-400">Rules:</p>
</div>
</div>
</div>
<!-- Accordion End -->
</div>
</div>
</section>
</main>
<footer class='mt-16 md:mt-32 bg-[#0B0D17] py-14 px-8 md:px-24 text-white'>
<div class='flex flex-col justify-between md:flex-row'>
<div class=''>
<ul class='flex gap-6'>
<li>Download</li>
<li class='mb-3'>License</li>
</ul>
<ul class='flex flex-wrap gap-6'>
<li>About</li>
<li>Pricing</li>
<li>Careers</li>
<li>Help</li>
<li class='mb-6'>Privacy Policy</li>
</ul>
</div>
<div class=''>
<h3 class='text-[#D9DBE1] font-medium text-lg mb-4'>Get the App</h3>
<img class='w-full mb-4 md:w-32' src="src/images/android.png" alt="">
<img class='w-full md:w-32' src="src/images/ios.png" alt="">
</div>
</div>
<p class='mt-12 text-center md:mt-8'>© 2023 Mars Rian. All rights reserved</p>
</footer>
<!-- Flowbite JS File -->
<script src="./node_modules/flowbite/dist/flowbite.min.js"></script>
</body>
</html>