-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
565 lines (557 loc) · 37.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="output.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<title>Burger</title>
</head>
<body>
<header class="bg-primaryColor fixed top-0 left-0 w-full z-50">
<nav class="container relative h-14 flex justify-between items-center">
<div>
<a class="text-2xl uppercase font-oswald" href="">Bur<span class="text-secondaryColor ">ger</span></a>
</div>
<div class="hidden absolute top-0 left-0 w-full py-14 bg-primaryColor border-b border-secondaryColor md:block md:static md:py-0 md:border-none md:w-auto md:ml-auto" id="nav-menu">
<ul class="flex flex-col text-center gap-5 md:flex-row">
<li><a href="" class="nav__link hover:text-secondaryColor ease-in transition-200">Home</a></li>
<li><a href="" class="nav__link hover:text-secondaryColor ease-in transition-200">About us</a></li>
<li><a href="" class="nav__link hover:text-secondaryColor ease-in transition-200">Menu</a></li>
<li><a href="" class="nav__link hover:text-secondaryColor ease-in transition-200">Review</a></li>
<li><a href="" class="nav__link hover:text-secondaryColor ease-in transition-200">Contact us</a></li>
</ul>
<div class="absolute top-[0.7rem] right-4 text-2xl cursor-pointer md:hidden" id="nav-close">
<i class="ri-close-line"></i>
</div>
</div>
<div class="flex items-center gap-5 md:hidden">
<i class="ri-moon-line cursor-pointer ml-4 text-xl " ></i>
<div class="md:hidden" id="hamburger">
<i class="ri-menu-2-line"></i>
</div>
</div>
</nav>
</header>
<main>
<section id="home">
<div class="container flex flex-col items-center gap-10 md:flex-row ">
<div class="mx-auto md:basis-1/2 lg:basis-2/5 animate-movingY "><img src="img/home-image.png" alt="" class="w-60 md:w-full"></div>
<div class="text-center md:basis-1/2 md:text-start lg:basis-3/5" >
<h1 class="home__title">HAPPY TUMMY WITH TASTY BURGERS.</h1>
<div class="separator mx-auto md:mx-0"></div>
<p class="paragraph">Discover the taste of our delicious, freshly made burgers. At Burger House, we use only the finest ingredients to bring you an unforgettable dining experience. Join us for a meal that will tantalize your taste buds and leave you craving more!</p>
<div class="text-base flex items-center justify-center gap-4 py-10 md:justify-start md:gap-20 ">
<div class="text-center">
<i class="fa-solid fa-utensils text-secondaryColor text-4xl"></i>
<br/>
Delicious
</div>
<div class="text-center">
<i class="fa-solid fa-droplet text-secondaryColor text-4xl"></i>
<br/>
Fresh
</div>
<div class="text-center">
<i class="fa-solid fa-leaf text-secondaryColor text-4xl"></i>
<br/>
Organic
</div>
</div>
<a href="" class="btn btn-primary">See more</a>
</div>
</div>
</section>
<section id="category">
<div class="container flex flex-col gap-5 md:flex-row">
<div class="bg-secondaryColor flex py-3 rounded-lg overflow-hidden md:flex-1">
<div class="basis-1/3 relative">
<img src="img/burger-4.png" alt="" class="absolute w-28 bottom-1 left-1">
</div>
<div>
<div class="mb-2">
<h4 class="card__title">Food</h4>
<p class="text-xs ">Burger</p>
</div>
<a href="" class="text-black cursor-pointer">Buy-online</a>
</div>
</div>
<div class="bg-redColor flex py-3 rounded-lg overflow-hidden md:flex-1">
<div class="basis-1/3 relative">
<img src="img/snack-1.png" alt="" class="absolu w-28 bottom-4 left-1">
</div>
<div>
<div class="mb-2">
<h4 class="card__title">Snack</h4>
<p class="text-xs ">Chips</p>
</div>
<a href="" class="text-black cursor-pointer">Buy-online</a>
</div>
</div>
<div class="bg-greenColor flex py-3 rounded-lg overflow-hidden md:flex-1">
<div class="basis-1/3 relative">
<img src="img/beverage-1.png" alt="" class="absolute w-28 -bottom-1 left-1">
</div>
<div>
<div class="mb-2">
<h4 class="card__title">Beverage</h4>
<p class="text-xs ">Juice</p>
</div>
<a href="" class="text-black cursor-pointer">Buy-online</a>
</div>
</div>
</div>
</section>
<section id="promo">
<div class="container flex flex-col gap-5 lg:gap-10 lg:flex-row md:flex-row">
<div class="bg-primaryColorLight flex flex-col p-5 rounded-lg md:flex-row md:items-center lg:flex-row-reverse lg:flex-1">
<img src="img/promo-1.png" alt="" class="w-40 mx-auto hover:animate-movingY md:mx-2">
<div class="space-y-2 pt-5 md:pt-0">
<p class="text-xs text-secondaryColor">Payday promo</p>
<h3 class="card__title">GET A 10% DISCOUNT ON PAYDAY WEEK</h3>
<P class="paragraph">Join us for a meal that will tantalize your taste buds and leave you craving more!</P>
<a href="" class="text-xs text-secondaryColor">Buy online</a>
</div>
</div>
<div class=" bg-primaryColorLight flex flex-col p-5 rounded-lg md:flex-row md:items-center lg:flex-row-reverse lg:flex-1">
<img src="img/promo-2.png" alt="" class="w-40 mx-auto hover:animate-movingY md:mx-2">
<div class="space-y-2 pt-5 md:pt-0">
<p class="text-xs text-secondaryColor">Payday promo</p>
<h3 class="card__title">GET A 10% DISCOUNT ON PAYDAY WEEK</h3>
<P class="paragraph">Join us for a meal that will tantalize your taste buds and leave you craving more!</P>
<a href="" class="text-xs text-secondaryColor">Buy online</a>
</div>
</div>
<div class=" bg-primaryColorLight flex flex-col p-5 rounded-lg md:flex-row md:items-center lg:flex-row-reverse lg:flex-1">
<img src="img/promo-1.png" alt="" class="w-40 mx-auto hover:animate-movingY md:mx-2">
<div class="space-y-2 pt-5 md:pt-0">
<p class="text-xs text-secondaryColor">Payday promo</p>
<h3 class="card__title">GET A 10% DISCOUNT ON PAYDAY WEEK</h3>
<P class="paragraph">Join us for a meal that will tantalize your taste buds and leave you craving more!</P>
<a href="" class="text-xs text-secondaryColor">Buy online</a>
</div>
</div>
</div>
</section>
<section id="about">
<div class="container flex flex-col gap-10 md:flex-row">
<div class="flex-1">
<img src="img/about.jpg" alt="" class="rounded-lg">
</div>
<div class="flex-1">
<h2 class="section__title">Find food and drinks, all in one place for your best taste</h2>
<div class="separator"></div>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste </p>
<ul class="grid grid-cols-2 py-5 space-y-1">
<li class="tet-xs text-paragraphColor"><i class="fa-solid fa-check text-secondaryColor"></i>Best Price</li>
<li class="tet-xs text-paragraphColor"><i class="fa-solid fa-check text-secondaryColor"></i> Fresh Ingriedents</li>
<li class="tet-xs text-paragraphColor"><i class="fa-solid fa-check text-secondaryColor"></i>Best Service</li>
<li class="tet-xs text-paragraphColor"><i class="fa-solid fa-check text-secondaryColor"></i>Health Protocol</li>
<a href="" class="btn btn-primary">About-us</a>
</ul>
</div>
</div>
</section>
<section id="menu">
<div class="container flex flex-col">
<div class="max-w-md mx-auto text-center">
<h2 class="section__title">Our best menu</h2>
<div class="separator mx-auto"></div>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
<div class="tabs_wrap">
<ul class="flex flex-wrap justify-center gap-3 py-10">
<li data-tabs="all" class="btn bg-primaryColorLight hover:bg-secondaryColor active"> All</li>
<li data-tabs="food" class="btn bg-primaryColorLight hover:bg-secondaryColor">Food</li>
<li data-tabs="snack" class="btn bg-primaryColorLight hover:bg-secondaryColor">Snack</li>
<li data-tabs="beverage" class="btn bg-primaryColorLight hover:bg-secondaryColor">Beverage</li>
</ul>
</div>
</div>
<div>
<!--food-->
<ul class="grid grid-cols-1 gap-5 md:grid-cols-2 lg:grid-cols-4 lg:gap-12">
<li class="item_wrap food">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/burger-1.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Regural Beef burger</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap food">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/burger-2.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Regural Beef burger</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap food">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/burger-3.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Regural Beef burger</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap food">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/burger-5.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Regural Beef burger</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap food">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/burger-4.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Regural Beef burger</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<!--Snack-->
<li class="item_wrap snack">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/snack-1.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">French Fries</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap snack">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/snack-2.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">French Fries</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap snack">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/snack-3.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">French Fries</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap snack">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/snack-4.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">French Fries</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap snack">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/snack-5.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">French Fries</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap snack">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/snack-6.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">French Fries</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<!---Beverage-->
<li class="item_wrap beverage">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/beverage-1.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Beverages</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap beverage">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/beverage-2.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Beverages</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap beverage">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/beverage-3.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Beverages</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap beverage">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/beverage-4.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Beverages</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
<li class="item_wrap beverage">
<div class="h-56 grid place-items-center bg-primaryColorLight rounded-3xl hover:bg-secondaryColor ease-linear duration-200 lg:h-40">
<img src="img/beverage-5.png" alt="" class="w-40 hover:scale-110 ease-linear duration-200 md:w-48 lg:w-24">
</div>
<div class="pt-5">
<div class="mb-2">
<h4 class="card__title">Beverages</h4>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<p class="text-secondaryColor">$42.00</p>
</div>
</li>
</ul>
</div>
</div>
</section>
<section id="review" class="bg-primaryColorLight py-20">
<div class="container mx-auto flex flex-col">
<div class="max-w-md mx-auto text-center">
<h2 class="section__title"> customer review</h2>
<div class="separator mx-auto"></div>
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<div class="swiper py-10 mt-7">
<ul class="swiper-wrapper">
<li class="swiper-slide">
<div class="flex flex-col gap-5 bg-primaryColor rounded-lg p-6 xs:mr-5" >
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
<div class="flex items-center">
<img src="img/review-1.jpg" alt="" class="w-12 h-12 rounded-full">
<div class="ml-2">
<p class="font-oswald uppercase"> John Doe</p>
<p class="paragraph">Designer</p>
</div>
<i class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto "></i>
</div>
</div>
</li>
<li class="swiper-slide">
<div class="flex flex-col gap-5 bg-primaryColor rounded-lg p-6" >
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
<div class="flex items-center">
<img src="img/review-2.jpg" alt="" class="w-12 h-12 rounded-full">
<div class="ml-2">
<p class="font-oswald uppercase"> John Doe</p>
<p class="paragraph">Designer</p>
</div>
<i class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto "></i>
</div>
</div>
</li>
<li class="swiper-slide">
<div class="flex flex-col gap-5 bg-primaryColor rounded-lg p-6" >
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
<div class="flex items-center">
<img src="img/review-3.jpg" alt="" class="w-12 h-12 rounded-full">
<div class="ml-2">
<p class="font-oswald uppercase"> John Doe</p>
<p class="paragraph">Designer</p>
</div>
<i class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto "></i>
</div>
</div>
</li>
<li class="swiper-slide">
<div class="flex flex-col gap-5 bg-primaryColor rounded-lg p-6" >
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
<div class="flex items-center">
<img src="img/review-4.jpg" alt="" class="w-12 h-12 rounded-full">
<div class="ml-2">
<p class="font-oswald uppercase"> John Doe</p>
<p class="paragraph">Designer</p>
</div>
<i class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto "></i>
</div>
</div>
</li>
<li class="swiper-slide">
<div class="flex flex-col gap-5 bg-primaryColor rounded-lg p-6" >
<p class="paragraph">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
<div class="flex items-center">
<img src="img/review-5.jpg" alt="" class="w-12 h-12 rounded-full">
<div class="ml-2">
<p class="font-oswald uppercase"> John Doe</p>
<p class="paragraph">Designer</p>
</div>
<i class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto "></i>
</div>
</div>
</li>
</ul>
<div class="swiper-pagination">
</div>
</div>
</div>
</section>
<section id="contact" class="bg-secondaryColor py-16">
<div class="container flex flex-col gap-5 md:items-center md:flex-row" >
<div class="space-y-4 md:flex-1">
<h2 class="section__title text-blackColor"> Get exclusive update</h2>
<p class="text-sm">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
<div class="flex flex-col gap-3 md:flex-row md:flex-1">
<input type="email" placeholder="email address" class="p-2 text-blackColor rounded-lg outline-none md:w-full">
<a href="" class="flex items-center justify-center gap-2 btn bg-blackColor hover:opacity-75"><i class="fa-solid fa-paper-plane"></i> Subscribe</a>
</div>
</div>
</section>
</main>
<footer>
<section id="footer">
<div class="container">
<ul class="grid grid-cols-1 items-start gap-5 pd-5 md:grid-cols-2 lg:grid-cols-4 ">
<li>
<div class="space-y-3">
<a href="" class="text-4xl font-oswald uppercase">Bur <span class="text-secondaryColor">Ger</span></a>
<p class="text-xs">Find food and drinks, all in one place for your best taste Find food and drinks, all in one place for your best taste</p>
</div>
</li>
<li>
<div class="flex flex-col gap-3">
<h3 class="text-lg uppercase font-oswald">Support</h3>
<a href="" class="text-xs hover:text-secondaryColor">FAQ's</a>
<a href="" class="text-xs hover:text-secondaryColor">Privacy</a>
<a href="" class="text-xs hover:text-secondaryColor">Terms and condition</a>
<a href="" class="text-xs hover:text-secondaryColor">Contact</a>
</div>
</li>
<li class="space-y-8">
<div class="space-y-2">
<h3 class="text-lg uppercase font-oswald">Phone</h3>
<p class="flex items-center gap-2 text-xs"><i class="fa-solid fa-phone"></i>+251-9-309-024-80</p>
</div>
</li>
<li class="space-y-8">
<div class="space-y-2">
<h3 class="text-lg uppercase font-oswald">email</h3>
<p class="flex items-center gap-2 text-xs"><i class="fa-solid fa-envelop text-lg text-secondaryColor" ></i>burger@burger.com</p>
</div>
</li>
<li class="space-y-8">
<div class="space-y-2">
<h3 class="text-lg uppercase font-oswald">address</h3>
<p class="flex items-center gap-2 text-xs"><i class="fa-solid fa-location-dot text-lg text-secondaryColor" ></i>Gerji</p>
</div>
<div class="space-y-2">
<h3 class="text-lg uppercase font-oswald">follow us</h3>
<div class="space-x-3">
<i class="fa-brands fa-facebook-f text-lg cursor-pointer text-secondaryColor hover:translate-y-1 ease-in duration-200"></i>
<i class="fa-brands fa-twitter text-lg cursor-pointer text-secondaryColor hover:translate-y-1 ease-in duration-200"></i>
<i class="fa-brands fa-square-instagram text-lg cursor-pointer text-secondaryColor hover:translate-y-1 ease-in duration-200"></i>
<i class="fa-brands fa-facebook-f text-lg cursor-pointer text-secondaryColor hover:translate-y-1 ease-in duration-200"></i>
</div>
</div>
</li>
</ul>
<div class="flex flex-col items-center border-t border-primaryColorLight mt-3 py-5 md:flex-row md:justify-between">
<p class="paragraph">Designed by Elsabeth during Kuraz internship</p>
<p class="paragraph">Copy right @2024. All right reserved.</p>
</div>
</div>
</section>
</footer>
<a href="" class="fixed right-4 -bottom-1/2 bg-secondaryColor shadow-sm inline-block p-4 py-2 rounded-full text-lg text-blackColor z-50 hover:translate-y-1 ease-in duration-200" id="scroll-up">
<i class="fa-solid fa-arrow-up"></i>
</a>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script>
const swiper = new Swiper('.swiper', {
speed:400,
spaceBetween:30,
autoplay: {
delay: 5000,
disableOnInteraction:false
},
pagination: {
el: '.swiper-pagination',
clickable:true
},
grabCursor:true,
breakpoints: {
0:{
slidesPerView1,
},
640: {
slidesPerView: 2,
},
768: {
slidesPerView: 3,
},
1024: {
slidesPerView: 4,
},
},
});
</script>
<script src="main.js"></script>
</body>
</html>