-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
522 lines (521 loc) · 29.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light">
<title>Sweet Whisks Home</title>
<link rel="stylesheet" href="./style.css" />
<script src="./script.js" defer></script>
</head>
<body class="bg-[url('./images/bg-img-new.png')] bg-contain bg-repeat flex flex-col " style="background-size: 40%;">
<header id="home"
class="flex-row lg:h-[5.34rem] bg-white w-full h-16 px-5 md:px-12 lg:px-24 items-center justify-center"
>
<!-- desktop header -->
<div class="items-center justify-between hidden h-full lg:flex">
<div id="main-logo" class="">
<a href="#home" class="cursor-pointer">
<img src="./icons/logo.svg" alt="Sweet Whisks Logo"/>
</a>
</div>
<div class="items-center justify-between lg:flex">
<ul class="lg:flex lg:items-center">
<li
class="font-semibold transform font-body hover:scale-105 text-txt-lightGray lg:text-a-desktop lg:mx-4"
>
<a href="./about.html">Our Story</a>
</li>
<li
class="font-semibold transform font-body hover:scale-105 text-txt-lightGray lg:text-a-desktop lg:mx-4"
>
<a href="#featured-products">Sweet Creations</a>
</li>
<li
class="font-semibold transform font-body hover:scale-105 text-txt-lightGray lg:text-a-desktop lg:mx-4"
>
<a href="#testimonial">Testimonials</a>
</li>
</ul>
<a href="./contact.html">
<button
class="lg:ml-4 btn-primary text-a-mobile md:text-a-tablet lg:text-a-desktop font-body"
>
Contact
</button>
</a>
</div>
</div>
<!-- Mobile Menu -->
<div class="flex flex-row items-center justify-between h-full lg:hidden">
<div id="main-logo" class="scale-[80%]">
<a href="#home"
><img src="./icons/logo.svg" alt="Sweet Whisks Logo"
/></a>
</div>
<div id="menuBtn" class="w-8 h-8 cursor-pointer hover:scale-105">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
class="text-txt-lightGray hover:text-txt-darkGray"
>
<!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
fill="currentColor"
d="M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"
/>
</svg>
</div>
</div>
<div
id="mobileMenu"
class="fixed right-0 z-50 hidden w-3/5 h-full bg-white shadow-lg"
>
<ul class="flex flex-col items-center h-full py-8 justify-items-start">
<li
class="mb-4 font-semibold text-right text-txt-lightGray font-body md:text-a-tablet text-a-mobile hover:scale-105"
>
<a class="mobile-sec-btn" href="./about.html">Our Story</a>
</li>
<li
class="mb-4 font-semibold text-right text-txt-lightGray font-body md:text-a-tablet text-a-mobile hover:scale-105"
>
<a class="mobile-sec-btn" href="#featured-products">Sweat Creations</a>
</li>
<li
class="mb-4 font-semibold text-right text-txt-lightGray font-body md:text-a-tablet text-a-mobile hover:scale-105"
>
<a class="mobile-sec-btn" href="#testimonial">Testimonials</a>
</li>
<li
class="mb-2 font-semibold text-right text-txt-lightGray font-body md:text-a-tablet text-a-mobile hover:scale-105"
>
<a href="./contact.html">Contact</a>
</li>
</ul>
</div>
</header>
<!-- hero-section -->
<div
id="hero"
class="w-full px-5 py-8 bg-background md:px-12 lg:px-24 lg:pgap-y-20 border-y-2 "
>
<div
class="flex flex-col-reverse items-center justify-center gap-0 px-2 lg:flex-row"
>
<div
class="flex flex-col items-center justify-center w-full gap-2 lg:w-[75%] lg:justify-start lg:items-start md:gap-6"
>
<div class="flex flex-col">
<h1
class="text-center text-h1-mobile md:text-h1-tablet lg:text-h1-desktop lg:text-left font-heading"
>
Crafting Moments<br class="hidden lg:block" />
of Joy, One Slice<br class="hidden lg:block" />
at a Time
</h1>
<p
class="text-center lg:text-left text-p-mobile md:text-p-tablet lg:text-p-desktop text-txt-lightGray"
>
Indulge in our exquisite selection of handmade desserts. From
velvety cheesecakes to fruit-laden tarts, each creation is a
masterpiece of flavor and texture, designed to elevate your
dessert experience.
</p>
</div>
<div class="flex flex-col items-center gap-2 lg:gap-4 md:flex-row">
<button
class="btn-primary text-a-mobile md:text-a-tablet lg:text-a-desktop font-body"
>
Order Now
</button>
<button
class="btn-secondary text-a-mobile md:text-a-tablet lg:text-a-desktop font-body"
>
Our Collection
</button>
</div>
</div>
<div
class="flex items-center justify-center -my-10 md:-my-16"
>
<img src="./images/hero_img.webp" alt="A Slice of Cheese Cake" />
</div>
</div>
</div>
<!-- Featured Services -->
<div id="services" class="w-full px-5 py-6 mb-2 bg-white shadow-lg md:px-12 lg:px-24 lg:py md:mb-8 lg:mb-10">
<div class="flex flex-col gap-4 px-6 md:flex-row">
<div class="flex flex-col items-center justify-center">
<div>
<img
src="./images/services_1.svg"
alt="image-cake"
class="w-20 h-20 md:w-24 md:h-24"
/>
</div>
<div>
<p
class="font-semibold text-center text-black text-a-mobile md:text-a-tablet lg:text-a-desktop"
>
Custom Cakes
</p>
<p
class="text-center text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop text-txt-lightGray"
>
Create a memorable centerpiece for your special occasion.
</p>
</div>
</div>
<div class="flex flex-col items-center justify-center">
<div>
<img
src="./images/services_2.svg"
alt="image-catering"
class="w-20 h-20 md:w-24 md:h-24"
/>
</div>
<div>
<p
class="font-semibold text-center text-black text-a-mobile md:text-a-tablet lg:text-a-desktop"
>
Catering Services
</p>
<p
class="text-center text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop text-txt-lightGray"
>
Delight your guests with our delectable treats and dishes.
</p>
</div>
</div>
<div class="flex flex-col items-center justify-center">
<div>
<img
src="./images/services_3.svg"
alt="image-oven"
class="w-20 h-20 md:w-24 md:h-24"
/>
</div>
<div>
<p
class="font-semibold text-center text-black text-a-mobile md:text-a-tablet lg:text-a-desktop"
>
Baking Classes
</p>
<p
class="text-center text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop text-txt-lightGray"
>
Learn the art of baking from our expert pastry chefs.
</p>
</div>
</div>
</div>
</div>
<!--About -->
<div
id="about"
class="w-full px-5 py-8 mb-2 bg-transparent md:px-12 lg:px-24 md:py-6 lg:pb-0 md:mb-8 lg:mb-12"
>
<div
class="flex flex-col items-center justify-center px-4 py-6 border bg-background shadow-lg rounded-[20px] lg:flex-row gap-2 lg:pb-0"
>
<div class="flex justify-center">
<img src="./images/about_img.webp" alt="image-baker" class="" />
</div>
<div class="flex flex-col justify-center h-auto lg:w-1/2">
<p class="mb-1 text-a-mobile md:text-a-tablet lg:text-a-desktop font-body text-secondary-shade">
About Us
</p>
<h2 class="mb-4 text-black text-h2-mobile md:text-h2-tablet lg:text-h2-desktop font-heading">
Crafting Sweet Memories <br class="hidden md:block" />Since 2015
</h2>
<p class="mb-6 text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-lightGray">
At Sweet Whisks, we believe that every bite should tell a story.
Founded by pastry chef Emma Thompson, our bakery has been a labor of
love from the very beginning. We started with a simple dream: to
create confections that not only tantalize the taste buds but also
warm the heart. Today, we continue to push the boundaries of flavor
while honoring time-tested baking traditions
</p>
<div>
<a href="./about.html"><button class="btn-primary text-a-mobile md:text-a-tablet lg:text-a-desktop font-body">Learn More</button></a>
</div>
</div>
</div>
</div>
<!-- Featured Products -->
<div
id="featured-products"
class="flex flex-col items-center w-full gap-6 px-5 py-6 mb-2 bg-white md:px-12 lg:px-24 md:gap-8 lg:gap-10 md:mb-8 lg:mb-10 shadow-lg">
<div class="flex flex-col items-center justify-center text-center">
<p class="mb-1 text-a-mobile md:text-a-tablet lg:text-a-desktop font-body text-secondary-shade">
Delecious
</p>
<h2 class="mb-4 text-black text-h2-mobile md:text-h2-tablet lg:text-h2-desktop font-heading">
Discover Our Popular<br class="hidden md:block"/> Sweet Creations
</h2>
<p class="mb-6 text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-lightGray">
Embark on a journey of flavors with our exquisite treats, each a masterpiece of culinary artistry. From time-honored classics to innovative delights, our creations showcase the perfect harmony of premium ingredients and expert craftsmanship.
</p>
</div>
<div class="flex flex-col items-center justify-center gap-4 lg:flex-row md:gap-7 lg:gap-10">
<div class="flex flex-col">
<div class="flex items-center justify-center mb-2"><img src="./images/product_1.webp" alt="image of a cupcake" class="rounded-[20px] shadow-lg"></div>
<p class="font-semibold text-center text-black text-a-mobile md:text-a-tablet lg:text-a-desktop font-body">Featured Sweet Creations</p>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-lightGray">Indulge in our signature confections, where tradition meets innovation. </p>
</div>
<div class="flex flex-col">
<div class="flex items-center justify-center mb-2"><img src="./images/product_2.webp" alt="image of a cupcake" class="rounded-[20px] shadow-lg"></div>
<p class="font-semibold text-center text-black text-a-mobile md:text-a-tablet lg:text-a-desktop font-body">Featured Sweet Creations</p>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-lightGray">Indulge in our signature confections, where tradition meets innovation. </p>
</div>
<div class="flex flex-col">
<div class="flex items-center justify-center mb-2"><img src="./images/product_3.webp" alt="image of a cupcake" class="rounded-[20px] shadow-lg"></div>
<p class="font-semibold text-center text-black text-a-mobile md:text-a-tablet lg:text-a-desktop font-body">Featured Sweet Creations</p>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-lightGray">Indulge in our signature confections, where tradition meets innovation. </p>
</div>
</div>
<div class="flex flex-col items-center gap-2 lg:gap-4 md:flex-row">
<button
class="btn-primary text-a-mobile md:text-a-tablet lg:text-a-desktop font-body"
>
View
</button>
<button
class="btn-secondary text-a-mobile md:text-a-tablet lg:text-a-desktop font-body"
>
Order Now
</button>
</div>
</div>
<!-- Testimonials Section -->
<div id="testimonial" class="flex flex-col items-center w-full px-5 py-6 mb-2 bg-background md:px-12 lg:px-24 gap-4 lg:gap-8 md:mb-8 lg:mb-12">
<div class="flex flex-col items-center justify-center text-center">
<p class="mb-1 text-a-mobile md:text-a-tablet lg:text-a-desktop font-body text-secondary-shade">
Authentic
</p>
<h2 class="mb-4 text-black text-h2-mobile md:text-h2-tablet lg:text-h2-desktop font-heading">
What Our Customers Say
</h2>
<p class=" text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-lightGray">
Don't just take our word for it. Here's what the Aromaville community has to share about their experiences with<br class="hidden md:block"/> our coffee, service and events.
</p>
</div>
<!-- Main Testimonial -->
<div class="flex flex-col justify-center lg:flex-row lg:justify-between w-full shadow-lg rounded-xl overflow-hidden">
<div class="lg:w-[43%] justify-center items-center flex w-full lg:bg-white bg-none overflow-hidden">
<img src="./images/wedding_cake.webp" alt="wedding cake" class="w-full">
</div>
<div class="flex flex-col items-start justify-center lg:w-[57%] bg-white p-6 lg:p-4">
<p class="mb-6 text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-darkGray">
"Sweet Whisks turned my daughter's dream wedding into a reality with their stunning cake. Not only was it a masterpiece to look at, but the taste was out of this world! Emma and her team went above and beyond, incorporating our ideas flawlessly. The guests couldn't stop raving about it. Sweet Whisks didn't just provide a cake; they created an unforgettable memory."
</p>
<div class="flex flex-row h-[67px] gap-2">
<img src="./images/pfp_rosy_janner.webp" alt="Rossy janner" class="rounded-[200px] h-16 w-16">
<div class="flex flex-col justify-center">
<p class="font-semibold text-a-mobile md:text-a-tablet lg:text-a-desktop font-body">Rosy Jenner</p>
<p class="font-body text-p-mobile md:text-p-tablet lg:text-p-desktop text-txt-lightGray">Regular Customer</p>
</div>
</div>
</div>
</div>
<!-- Testimonials Carousel -->
<div class="flex items-center justify-center relative w-full">
<div class="overflow-hidden ">
<div id="slider" class="flex transition-transform duration-300 ease-in-out w-full">
<!-- Card 1 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 p-4">
<div class="flex flex-col gap-1 bg-white rounded-lg shadow-md p-8">
<div class="flex flex-row items-center justify-center">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
</div>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-darkGray">"Their gluten-free options are the best I've ever tasted. Finally, a bakery that doesn't compromise on flavor!"</p>
<div class="flex flex-row items-center justify-center gap-2">
<img src="./images/pfp_david_lee.webp" alt="pfp" class="rounded-[200px] h-10 w-10">
<div class="flex flex-col items-start justify-center">
<p class="text-p-mobile md:text-p-tablet lg:text-p-desktop font-body font-semibold text-black -mb-1">Mark Johnson</p>
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop font-body text-txt-lightGray">Food Blogger</p>
</div>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 p-4">
<div class="flex flex-col gap-1 bg-white rounded-lg shadow-md p-8">
<div class="flex flex-row items-center justify-center">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
</div>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-darkGray">"Their gluten-free options are the best I've ever tasted. Finally, a bakery that doesn't compromise on flavor!"</p>
<div class="flex flex-row items-center justify-center gap-2">
<img src="./images/pfp_david_lee.webp" alt="pfp" class="rounded-[200px] h-10 w-10">
<div class="flex flex-col items-start justify-center">
<p class="text-p-mobile md:text-p-tablet lg:text-p-desktop font-body font-semibold text-black -mb-1">Mark Johnson</p>
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop font-body text-txt-lightGray">Food Blogger</p>
</div>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 p-4">
<div class="flex flex-col gap-1 bg-white rounded-lg shadow-md p-8">
<div class="flex flex-row items-center justify-center">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
</div>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-darkGray">"Their gluten-free options are the best I've ever tasted. Finally, a bakery that doesn't compromise on flavor!"</p>
<div class="flex flex-row items-center justify-center gap-2">
<img src="./images/pfp_david_lee.webp" alt="pfp" class="rounded-[200px] h-10 w-10">
<div class="flex flex-col items-start justify-center">
<p class="text-p-mobile md:text-p-tablet lg:text-p-desktop font-body font-semibold text-black -mb-1">Mark Johnson</p>
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop font-body text-txt-lightGray">Food Blogger</p>
</div>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 p-4">
<div class="flex flex-col gap-1 bg-white rounded-lg shadow-md p-8">
<div class="flex flex-row items-center justify-center">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
</div>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-darkGray">"Their gluten-free options are the best I've ever tasted. Finally, a bakery that doesn't compromise on flavor!"</p>
<div class="flex flex-row items-center justify-center gap-2">
<img src="./images/pfp_david_lee.webp" alt="pfp" class="rounded-[200px] h-10 w-10">
<div class="flex flex-col items-start justify-center">
<p class="text-p-mobile md:text-p-tablet lg:text-p-desktop font-body font-semibold text-black -mb-1">Mark Johnson</p>
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop font-body text-txt-lightGray">Food Blogger</p>
</div>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 p-4">
<div class="flex flex-col gap-1 bg-white rounded-lg shadow-md p-8">
<div class="flex flex-row items-center justify-center">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
</div>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-darkGray">"Their gluten-free options are the best I've ever tasted. Finally, a bakery that doesn't compromise on flavor!"</p>
<div class="flex flex-row items-center justify-center gap-2">
<img src="./images/pfp_david_lee.webp" alt="pfp" class="rounded-[200px] h-10 w-10">
<div class="flex flex-col items-start justify-center">
<p class="text-p-mobile md:text-p-tablet lg:text-p-desktop font-body font-semibold text-black -mb-1">Mark Johnson</p>
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop font-body text-txt-lightGray">Food Blogger</p>
</div>
</div>
</div>
</div>
<!-- Card 6 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 p-4">
<div class="flex flex-col gap-1 bg-white rounded-lg shadow-md p-8">
<div class="flex flex-row items-center justify-center">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
<img src="./icons/star.svg" alt="star" class="">
</div>
<p class="text-center text-p-mobile md:text-p-tablet lg:text-p-desktop font-body text-txt-darkGray">"Their gluten-free options are the best I've ever tasted. Finally, a bakery that doesn't compromise on flavor!"</p>
<div class="flex flex-row items-center justify-center gap-2">
<img src="./images/pfp_david_lee.webp" alt="pfp" class="rounded-[200px] h-10 w-10">
<div class="flex flex-col items-start justify-center">
<p class="text-p-mobile md:text-p-tablet lg:text-p-desktop font-body font-semibold text-black -mb-1">Mark Johnson</p>
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop font-body text-txt-lightGray">Food Blogger</p>
</div>
</div>
</div>
</div>
</div>
<button id="prevBtn" class="absolute top-1/2 left-1 transform -translate-y-1/2 bg-primary rounded-full p-2 shadow-md hover:scale-105 hover:bg-accent">
<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24" stroke="none" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>
</button>
<button id="nextBtn" class="absolute top-1/2 right-1 transform -translate-y-1/2 bg-primary rounded-full p-2 shadow-md hover:scale-105 hover:bg-accent">
<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24" stroke="none" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
</div>
</div>
</div>
<!-- Newsletter -->
<div class="w-full px-5 py-6 mb-2 md:px-12 lg:px-24 md:mb-8 lg:mb-10">
<div class="flex flex-col items-center justify-center px-4 py-6 border bg-white shadow-lg rounded-[20px] lg:flex-row gap-2 w-full">
<div class="flex flex-col gap-2 w-full">
<div>
<h2 class="text-h2-mobile md:text-h2-tablet lg:text-h2-desktop font-heading font-bold">Join Our Newsletter Today!</h2>
<p class="text-p-mobile md:text-p-tablet lg:text-p-desktop text-txt-darkGray font-body">Stay updated with our latest news, promotions, and special offers.</p>
</div>
<div class="flex flex-row w-full">
<input type="text" class="border px-2 rounded-l-[20px] w-full max-w-[256px]" placeholder="Enter your email">
<button class="btn-primary rounded-l-none text-p-mobile md:text-p-tablet lg:text-p-desktop font-body whitespace-nowrap">Sign Up</button>
</div>
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop text-txt-lightGray font-body px-1">
By subscribing, you agree to our terms and conditions.
</p>
</div>
<div class=""><img src="./images/img_newsletter.webp" alt="A piece of cake"></div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="flex flex-col justify-center items-center w-full bg-white bottom-0 border mt-8" style="box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);">
<div class="flex flex-row flex-wrap justify-between items-start px-5 md:px-12 lg:px-24 py-6 w-full">
<div class="flex flex-col items-center mb-4 px-12">
<div class="flex flex-col items-start">
<button class="font-bold text-lg mb-2">Explore</button>
<ul>
<li class="mb-1"><a href="#home" class="text-gray-600 hover:text-gray-900">Home</a></li>
<li class="mb-1"><a href="#" class="text-gray-600 hover:text-gray-900">Orders</a></li>
</ul>
</div>
</div>
<div class="flex flex-col items-center mb-4 px-12">
<div class="flex flex-col items-start">
<button class="font-bold text-lg mb-2">About Us</button>
<ul>
<li class="mb-1"><a href="#about" class="text-gray-600 hover:text-gray-900">Our Journey</a></li>
<li class="mb-1"><a href="#featured-products" class="text-gray-600 hover:text-gray-900">Our products</a></li>
<li class="mb-1"><a href="#services" class="text-gray-600 hover:text-gray-900">Services</a></li>
</ul>
</div>
</div>
<div class="flex flex-col items-center mb-4 px-12">
<div class="flex flex-col items-start">
<button class="font-bold text-lg mb-2">Visit Us</button>
<a href="https://maps.app.goo.gl/LZMbQx51eH7S8duJ7" target="_blank" class="text-gray-600 hover:text-gray-900 mb-2">123 Baker Street,<br>Sweetville, SW 12345</a>
<p class="text-gray-600">
Hours:<br>
Mon-Sat: 7am-7pm<br>
Sun: 8am-4pm
</p>
</div>
</div>
</div>
<div class="flex justify-center items-center bg-background w-full py-2">
<p class="text-p-small-mobile md:text-p-small-tablet lg:text-p-small-desktop font-body text-txt-darkGray text-center font-light">
Copyright © 2024 Aromaville PVT LTD. All rights reserved.
</p>
</div>
</footer>
</body>
</html>