-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
415 lines (402 loc) · 25.8 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Prompt:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
important: true,
}
</script>
</head>
<body>
<header class="bg-white">
<div class="navbar bg-base-100">
<div class="navbar-start gap-3">
<div class="dropdown">
<div tabindex="0" role="button" class="btn btn-ghost">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h7" />
</svg>
</div>
<ul tabindex="0"
class="menu menu-sm dropdown-content mt-3 z-[2] p-2 shadow bg-base-100 rounded-box w-52">
<li><a>Category</a></li>
<li><a>Products</a></li>
<li><a>About us</a></li>
</ul>
</div>
<a class="btn btn-ghost flex items-center text-xl">
<img src="https://i.pinimg.com/originals/44/2a/d3/442ad30f98ba3d3657faf4b35b1fd25f.png"
class="h-8 me-3" alt="Vegetable Logo" />
Vegetable
</a>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1">
<li><a>Category</a></li>
<li>
<details>
<summary>Products</summary>
<ul class="p-2 min-w-[200px] z-[2]">
<li><a>Meats</a></li>
<li><a>Dried Food</a></li>
</ul>
</details>
</li>
<li><a>About us</a></li>
</ul>
</div>
<div class="navbar-end">
<a class="btn">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="size-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993 1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z" />
</svg>
</a>
</div>
</div>
</header>
<!-- first section category -->
<section>
<div class="relative">
<div class="absolute z-[1] top-0 left-0 right-0 img-background">
<img class="w-full h-full" src="https://cdn.britannica.com/17/196817-159-9E487F15/vegetables.jpg"
alt="">
</div>
<div
class="bg-white mx-auto py-2 px-4 transition-all sm:pb-7 sm:pt-16 sm:px-6 sm:py-6 md:py-9 lg:py-12 lg:px-8">
<div class="flex flex-col max-w-4xl mx-auto text-center relative z-[1]">
<h1 class="flex items-center justify-center gap-3">
<span class="text-white">Organic</span>
<span class="text-green-500">Food</span>
<span class="text-white">Store</span>
</h1>
<h3 class="mt-3 text-white sm:mt-4">Lorem ipsum dolor sit amet, consectetur
adipiscing
elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</h3>
<div class="mt-3 sm:mt-10">
<a href="#"
class="inline-block px-4 py-2 bg-green-500 text-white text-base font-semibold rounded-lg transition-all sm:px-8 sm:py-3.5 sm:border sm:bg-transparent sm:border-green-500 sm:text-green-500 hover:bg-green-500 hover:text-white hover:border-green-500 hover:bg-opacity-90">Get
started</a>
</div>
<div class="flex justify-center">
<img class="w-3/4 sm:w-auto h-3/4"
src="https://static.vecteezy.com/system/resources/thumbnails/025/277/368/small_2x/vegetables-basket-png.png"
alt="">
</div>
</div>
<div class="flex flex-col max-w-4xl mx-auto text-center mb-12 mt-12 sm:mt-0">
<h2 class="flex items-center justify-center gap-3">
<span class="text-black">Shop By</span>
<span class="text-green-500">Categories</span>
</h2>
<p class="content mt-3 text-gray-400 sm:mt-4 mb-12">Lorem ipsum dolor sit amet,
consectetur
adipiscing
elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<div
class="grid grid-cols-1 gap-8 p-[20px] sm:p-[14px] sm:grid-cols-2 sm:gap-4 lg:p-[8px] lg:grid-cols-4">
<div class="flex flex-col p-3 gap-2 transition-all rounded-2xl cursor-pointer
hover:bg-gray-50 hover:drop-shadow-lg hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://static.vecteezy.com/system/resources/thumbnails/025/277/368/small_2x/vegetables-basket-png.png"
alt="">
</div>
<span class="text-xl text-black font-bold">Vegetable</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all rounded-2xl cursor-pointer
hover:bg-gray-50 hover:drop-shadow-lg hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTkBPsBTWXBE_e45TA6lq3rIhYDMsrlsfTM3g&s"
alt="">
</div>
<span class="text-xl text-black font-bold">Organic Juice</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all rounded-2xl cursor-pointer
hover:bg-gray-50 hover:drop-shadow-lg hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://www.pngitem.com/pimgs/m/121-1215585_dry-fruits-png-transparent-dry-fruits-png-png.png"
alt="">
</div>
<span class="text-xl text-black font-bold">Dried Food</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all rounded-2xl cursor-pointer
hover:bg-gray-50 hover:drop-shadow-lg hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://pngimg.com/uploads/beef/beef_PNG41.png" alt="">
</div>
<span class="text-xl text-black font-bold">Meats</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- second section products -->
<section>
<div class="bg-gray-100 mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<div class="flex flex-col max-w-7xl mx-auto text-center">
<div class="flex flex-col mb-1 sm:mb-4 md:mb-8 lg:mb-12">
<h2 class="flex items-center justify-center gap-3">
<span class="text-black">Best Seller</span>
<span class="text-green-500">Products</span>
</h2>
</div>
<div
class="grid grid-cols-1 gap-8 p-[20px] sm:p-[14px] sm:grid-cols-2 sm:gap-4 lg:p-[8px] lg:grid-cols-5">
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://static.vecteezy.com/system/resources/thumbnails/025/277/368/small_2x/vegetables-basket-png.png"
alt="">
</div>
<span class="text-xl text-black font-bold">Vegetable</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTkBPsBTWXBE_e45TA6lq3rIhYDMsrlsfTM3g&s"
alt="">
</div>
<span class="text-xl text-black font-bold">Organic Juice</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://www.pngitem.com/pimgs/m/121-1215585_dry-fruits-png-transparent-dry-fruits-png-png.png"
alt="">
</div>
<span class="text-xl text-black font-bold">Dried Food</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://pngimg.com/uploads/beef/beef_PNG41.png" alt="">
</div>
<span class="text-xl text-black font-bold">Meats</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img src="https://static.vecteezy.com/system/resources/thumbnails/025/277/368/small_2x/vegetables-basket-png.png"
alt="">
</div>
<span class="text-xl text-black font-bold">Vegetable</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
</div>
</div>
</div>
</section>
<!-- third section blogs -->
<section>
<div class="bg-white mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<div class="flex flex-col max-w-4xl mx-auto text-center">
<div class="flex flex-col mb-1 sm:mb-4 md:mb-8 lg:mb-12">
<h2 class="flex items-center justify-center gap-3">
<span class="text-black">Our</span>
<span class="text-green-500">Blog</span>
</h2>
</div>
<div
class="grid grid-cols-1 gap-8 p-[20px] sm:p-[14px] sm:grid-cols-2 sm:gap-4 lg:p-[8px] lg:grid-cols-3">
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img class="object-cover w-full h-full"
src="https://www.organicfacts.net/wp-content/uploads/vegetarianfood.jpg" alt="">
</div>
<span class="text-xl text-black font-bold">Organic Juice</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img class="object-cover w-full h-full"
src="https://www.vegkitchen.com/wp-content/uploads/2017/07/easy-vegetable-curry-8-of-9.jpg"
alt="">
</div>
<span class="text-xl text-black font-bold">Dried Food</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
<div class="flex flex-col p-3 gap-2 transition-all cursor-pointer bg-white
hover:bg-gray-50 hover:drop-shadow-lg hover:rounded-2xl hover:scale-105">
<div class="w-full h-full flex items-center justify-center">
<img class="object-cover w-full h-full"
src="https://images2.minutemediacdn.com/image/upload/c_crop,w_1097,h_617,x_0,y_0/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/shape/cover/sport/643188-gettyimages-153946385-ca1ccfaad9be44325afc434b305adc0d.jpg"
alt="">
</div>
<span class="text-xl text-black font-bold">Meats</span>
<span class="text-gray-400">Lorem ipsum dolor sit amet, consectetur
adipiscing</span>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-white dark:bg-gray-900">
<div class="mx-auto w-full max-w-screen-xl p-4 py-6 lg:py-8">
<div class="md:flex md:justify-between">
<div class="mb-6 md:mb-0">
<a href="#" class="flex items-center">
<img src="https://i.pinimg.com/originals/44/2a/d3/442ad30f98ba3d3657faf4b35b1fd25f.png"
class="h-8 me-3" alt="Vegetable Logo" />
<span
class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">Vegetable</span>
</a>
</div>
<div class="grid grid-cols-2 gap-8 sm:gap-6 sm:grid-cols-3">
<div>
<h2 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Resources</h2>
<ul class="text-gray-500 dark:text-gray-400 font-medium">
<li class="mb-4">
<a href="#" class="hover:underline">Vegetable</a>
</li>
<li>
<a href="#" class="hover:underline">Dried Food</a>
</li>
</ul>
</div>
<div>
<h2 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Follow us</h2>
<ul class="text-gray-500 dark:text-gray-400 font-medium">
<li class="mb-4">
<a href="#" class="hover:underline">Facebook</a>
</li>
<li>
<a href="#" class="hover:underline">Line</a>
</li>
</ul>
</div>
<div>
<h2 class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Legal</h2>
<ul class="text-gray-500 dark:text-gray-400 font-medium">
<li class="mb-4">
<a href="#" class="hover:underline">Privacy Policy</a>
</li>
<li>
<a href="#" class="hover:underline">Terms & Conditions</a>
</li>
</ul>
</div>
</div>
</div>
<hr class="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8" />
<div class="sm:flex sm:items-center sm:justify-between">
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2024 <a href="#"
class="hover:underline">Absolute Management</a>. All Rights Reserved.
</span>
<div class="flex mt-4 sm:justify-center sm:mt-0">
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white cursor-pointer">
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor"
viewBox="0 0 8 19">
<path fill-rule="evenodd"
d="M6.135 3H8V0H6.135a4.147 4.147 0 0 0-4.142 4.142V6H0v3h2v9.938h3V9h2.021l.592-3H5V3.591A.6.6 0 0 1 5.592 3h.543Z"
clip-rule="evenodd" />
</svg>
<span class="sr-only">Facebook page</span>
</a>
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white ms-5 cursor-pointer">
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor"
viewBox="0 0 21 16">
<path
d="M16.942 1.556a16.3 16.3 0 0 0-4.126-1.3 12.04 12.04 0 0 0-.529 1.1 15.175 15.175 0 0 0-4.573 0 11.585 11.585 0 0 0-.535-1.1 16.274 16.274 0 0 0-4.129 1.3A17.392 17.392 0 0 0 .182 13.218a15.785 15.785 0 0 0 4.963 2.521c.41-.564.773-1.16 1.084-1.785a10.63 10.63 0 0 1-1.706-.83c.143-.106.283-.217.418-.33a11.664 11.664 0 0 0 10.118 0c.137.113.277.224.418.33-.544.328-1.116.606-1.71.832a12.52 12.52 0 0 0 1.084 1.785 16.46 16.46 0 0 0 5.064-2.595 17.286 17.286 0 0 0-2.973-11.59ZM6.678 10.813a1.941 1.941 0 0 1-1.8-2.045 1.93 1.93 0 0 1 1.8-2.047 1.919 1.919 0 0 1 1.8 2.047 1.93 1.93 0 0 1-1.8 2.045Zm6.644 0a1.94 1.94 0 0 1-1.8-2.045 1.93 1.93 0 0 1 1.8-2.047 1.918 1.918 0 0 1 1.8 2.047 1.93 1.93 0 0 1-1.8 2.045Z" />
</svg>
<span class="sr-only">Discord community</span>
</a>
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white ms-5 cursor-pointer">
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor"
viewBox="0 0 20 17">
<path fill-rule="evenodd"
d="M20 1.892a8.178 8.178 0 0 1-2.355.635 4.074 4.074 0 0 0 1.8-2.235 8.344 8.344 0 0 1-2.605.98A4.13 4.13 0 0 0 13.85 0a4.068 4.068 0 0 0-4.1 4.038 4 4 0 0 0 .105.919A11.705 11.705 0 0 1 1.4.734a4.006 4.006 0 0 0 1.268 5.392 4.165 4.165 0 0 1-1.859-.5v.05A4.057 4.057 0 0 0 4.1 9.635a4.19 4.19 0 0 1-1.856.07 4.108 4.108 0 0 0 3.831 2.807A8.36 8.36 0 0 1 0 14.184 11.732 11.732 0 0 0 6.291 16 11.502 11.502 0 0 0 17.964 4.5c0-.177 0-.35-.012-.523A8.143 8.143 0 0 0 20 1.892Z"
clip-rule="evenodd" />
</svg>
<span class="sr-only">Twitter page</span>
</a>
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white ms-5 cursor-pointer">
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor"
viewBox="0 0 20 20">
<path fill-rule="evenodd"
d="M10 .333A9.911 9.911 0 0 0 6.866 19.65c.5.092.678-.215.678-.477 0-.237-.01-1.017-.014-1.845-2.757.6-3.338-1.169-3.338-1.169a2.627 2.627 0 0 0-1.1-1.451c-.9-.615.07-.6.07-.6a2.084 2.084 0 0 1 1.518 1.021 2.11 2.11 0 0 0 2.884.823c.044-.503.268-.973.63-1.325-2.2-.25-4.516-1.1-4.516-4.9A3.832 3.832 0 0 1 4.7 7.068a3.56 3.56 0 0 1 .095-2.623s.832-.266 2.726 1.016a9.409 9.409 0 0 1 4.962 0c1.89-1.282 2.717-1.016 2.717-1.016.366.83.402 1.768.1 2.623a3.827 3.827 0 0 1 1.02 2.659c0 3.807-2.319 4.644-4.525 4.889a2.366 2.366 0 0 1 .673 1.834c0 1.326-.012 2.394-.012 2.72 0 .263.18.572.681.475A9.911 9.911 0 0 0 10 .333Z"
clip-rule="evenodd" />
</svg>
<span class="sr-only">GitHub account</span>
</a>
<a href="#" class="text-gray-500 hover:text-gray-900 dark:hover:text-white ms-5 cursor-pointer">
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor"
viewBox="0 0 20 20">
<path fill-rule="evenodd"
d="M10 0a10 10 0 1 0 10 10A10.009 10.009 0 0 0 10 0Zm6.613 4.614a8.523 8.523 0 0 1 1.93 5.32 20.094 20.094 0 0 0-5.949-.274c-.059-.149-.122-.292-.184-.441a23.879 23.879 0 0 0-.566-1.239 11.41 11.41 0 0 0 4.769-3.366ZM8 1.707a8.821 8.821 0 0 1 2-.238 8.5 8.5 0 0 1 5.664 2.152 9.608 9.608 0 0 1-4.476 3.087A45.758 45.758 0 0 0 8 1.707ZM1.642 8.262a8.57 8.57 0 0 1 4.73-5.981A53.998 53.998 0 0 1 9.54 7.222a32.078 32.078 0 0 1-7.9 1.04h.002Zm2.01 7.46a8.51 8.51 0 0 1-2.2-5.707v-.262a31.64 31.64 0 0 0 8.777-1.219c.243.477.477.964.692 1.449-.114.032-.227.067-.336.1a13.569 13.569 0 0 0-6.942 5.636l.009.003ZM10 18.556a8.508 8.508 0 0 1-5.243-1.8 11.717 11.717 0 0 1 6.7-5.332.509.509 0 0 1 .055-.02 35.65 35.65 0 0 1 1.819 6.476 8.476 8.476 0 0 1-3.331.676Zm4.772-1.462A37.232 37.232 0 0 0 13.113 11a12.513 12.513 0 0 1 5.321.364 8.56 8.56 0 0 1-3.66 5.73h-.002Z"
clip-rule="evenodd" />
</svg>
<span class="sr-only">Dribbble account</span>
</a>
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js"></script>
<script>
var productBtn = document.getElementById("button-product")
var productMenu = document.getElementById("product-menu")
var menuBtn = document.getElementById("button-menu")
var menu = document.getElementById("menu")
productBtn.onclick = function () {
if (productMenu.classList.contains("hide")) {
productMenu.classList.add("show");
productMenu.classList.remove("hide");
} else {
productMenu.classList.add("hide");
productMenu.classList.remove("show");
}
}
console.log("test")
menuBtn.onclick = function () {
console.log("test1")
if (menu.classList.contains("hide")) {
menu.classList.add("show");
menu.classList.remove("hide");
} else {
menu.classList.add("hide");
menu.classList.remove("show");
}
}
</script>
</body>
</html>