-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
684 lines (684 loc) · 35.6 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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Pinegrow Vite Tailwind CSS - Quick start template</title>
<link href="/dist/tailwind.css" rel="stylesheet" />
<link rel="pg-require" href="projectdb.pgml" />
<link rel="pg-require" href="pinegrow.json" />
<script>
/* Pinegrow Interactions, do not remove */ ;(function () {
try {
if (!document.documentElement.hasAttribute('data-pg-ia-disabled')) {
window.pgia_small_mq =
typeof pgia_small_mq == 'string'
? pgia_small_mq
: '(max-width:767px)'
window.pgia_large_mq =
typeof pgia_large_mq == 'string'
? pgia_large_mq
: '(min-width:768px)'
var style = document.createElement('style')
var pgcss =
'html:not(.pg-ia-no-preview) [data-pg-ia-hide=""] {opacity:0;visibility:hidden;}html:not(.pg-ia-no-preview) [data-pg-ia-show=""] {opacity:1;visibility:visible;display:block;}'
if (
document.documentElement.hasAttribute('data-pg-id') &&
document.documentElement.hasAttribute('data-pg-mobile')
) {
pgia_small_mq = '(min-width:0)'
pgia_large_mq = '(min-width:99999px)'
}
pgcss +=
'@media ' +
pgia_small_mq +
'{ html:not(.pg-ia-no-preview) [data-pg-ia-hide="mobile"] {opacity:0;visibility:hidden;}html:not(.pg-ia-no-preview) [data-pg-ia-show="mobile"] {opacity:1;visibility:visible;display:block;}}'
pgcss +=
'@media ' +
pgia_large_mq +
'{html:not(.pg-ia-no-preview) [data-pg-ia-hide="desktop"] {opacity:0;visibility:hidden;}html:not(.pg-ia-no-preview) [data-pg-ia-show="desktop"] {opacity:1;visibility:visible;display:block;}}'
style.innerHTML = pgcss
document.querySelector('head').appendChild(style)
}
} catch (e) {
console && console.log(e)
}
})()
</script>
<link
href="https://fonts.googleapis.com/css?family=Lato:100,200,300,400,500,600,700,800,900&display=swap"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<div
class="flex flex-col bg-white dark:bg-neutral-950 text-neutral-900 dark:text-neutral-50"
>
<div>
<header>
<div class="container mx-auto relative">
<div class="flex flex-wrap items-center p-4">
<a
href="#"
class="font-bold font-serif hover:text-opacity-75 inline-flex items-center leading-none mr-auto text-secondary-500 dark:text-secondary-200 text-xl uppercase"
>
<svg
version="1.0"
xmlns="http://www.w3.org/2000/svg"
width="2.4em"
xml:space="preserve"
fill="currentColor"
viewBox="0 0 100 100"
height="2.4em"
class="mr-2"
>
<path
d="M23.333 36.666C15.974 36.666 10 42.637 10 50c0 7.356 5.974 13.333 13.333 13.333h53.334C84.026 63.333 90 57.356 90 50c0-7.363-5.974-13.334-13.333-13.334a13.281 13.281 0 0 0-9.428 3.906l-4.717-4.713c3.571-3.574 8.262-5.605 13.281-5.82C72.852 18.521 62.432 10 50 10c-12.435 0-22.852 8.521-25.801 20.032 10.638.456 19.141 9.206 19.141 19.961h-6.667c0-7.363-5.977-13.333-13.333-13.333l-.007.006zM68.545 68.333l-3.75 15H60v-15h-6.667v15h-6.666v-15H40v15h-4.795l-3.75-15h-6.872L30 90h40l5.417-21.667z"
></path>
</svg>
<span>The Cake<br />Factory</span>
</a>
<button
class="hover:bg-white hover:text-secondary-500 lg:hidden px-3 py-2 rounded text-secondary-500"
data-name="nav-toggler"
data-pg-ia='{"l":[{"name":"NabMenuToggler","trg":"click","a":{"l":[{"t":"^nav|[data-name=nav-menu]","l":[{"t":"set","p":0,"d":0,"l":{"class.remove":"hidden"}}]},{"t":"#gt# span:nth-of-type(1)","l":[{"t":"tween","p":0,"d":0.2,"l":{"rotationZ":45,"yPercent":300}}]},{"t":"#gt# span:nth-of-type(2)","l":[{"t":"tween","p":0,"d":0.2,"l":{"autoAlpha":0}}]},{"t":"#gt# span:nth-of-type(3)","l":[{"t":"tween","p":0,"d":0.2,"l":{"rotationZ":-45,"yPercent":-300}}]}]},"pdef":"true","trev":"true"}]}'
data-pg-ia-apply="$nav [data-name=nav-toggler]"
>
<span class="block border-b-2 border-current my-1 w-6"></span>
<span class="block border-b-2 border-current my-1 w-6"></span>
<span class="block border-b-2 border-current my-1 w-6"></span>
</button>
<nav
class="lg:flex lg:space-x-4 lg:space-y-0 lg:w-auto space-y-2 w-full hidden lg:items-center"
data-name="nav-menu"
>
<div class="flex flex-col lg:flex-row">
<a href="#" class="hover:text-opacity-75 lg:px-6 lg:py-4 py-2"
>Home</a
><a
href="#"
class="hover:text-opacity-75 lg:px-6 lg:py-4 py-2"
>Custom Cakes</a
><a
href="#"
class="hover:text-opacity-75 lg:px-6 lg:py-4 py-2"
>Experiences</a
><a
href="#"
class="hover:text-opacity-75 lg:px-6 lg:py-4 py-2"
>About</a
><a
href="#"
class="hover:text-opacity-75 lg:px-6 lg:py-4 py-2"
>Contact</a
>
</div>
<a
href="#"
class="bg-secondary-600 hover:bg-secondary-700 inline-block px-6 py-2 text-white"
>Shop Now</a
>
</nav>
</div>
</div>
</header>
<main>
<section class="relative text-white">
<div
class="absolute bg-secondary-500 h-full left-0 top-0 w-full lg:w-7/12"
></div>
<div class="container mx-auto pb-24 pt-24 px-4 relative">
<div
class="-mx-4 flex flex-wrap items-center space-y-6 lg:space-y-0"
>
<div class="px-4 w-full lg:w-6/12">
<h1>Life is full of Memories, we make them Sweeter</h1>
<iconify-icon
icon="line-md:iconify1"
class="text-3xl"
></iconify-icon>
<p class="mb-6 text-opacity-50 text-white text-xl sm:pr-12">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Phasellus pulvinar faucibus neque, nec rhoncus nunc ultrices
sit amet.
</p>
<a
href="#"
class="bg-color3-600 hover:bg-color3-700 inline-block px-6 py-2 text-white"
>Order Now</a
>
</div>
<div class="px-4 w-full lg:w-6/12">
<div class="bg-secondary-500 lg:p-4">
<div
class="bg-center bg-cover bg-no-repeat blur-none z-0 bg-design-image lg:bg-design-image-large relative"
style="height: 100vh"
></div>
</div>
</div>
</div>
</div>
</section>
<section class="py-12 text-center">
<div class="container mx-auto px-4">
<div class="-mx-4 flex flex-wrap justify-center">
<div class="p-4 w-full lg:w-7/12" x-data="searchBox">
<input
type="search"
name="search"
x-model.debounce:value="searchText"
x-bind:placeholder="placeholder"
/>
<div id="result" class="py-4">
<ul class="space-y-6">
<template x-for="(result, index) in results" :key="index">
<li>
<a
x-bind:href="result.data.url"
x-text="result.data.title"
target="_blank"
></a>
</li>
</template>
</ul>
</div>
</div>
</div>
</div>
<div class="container mx-auto px-4 py-6">
<div class="-mx-4 flex flex-wrap justify-center">
<div class="p-4 w-full lg:w-7/12">
<h2
class="flex font-bold font-serif items-center mb-4 text-4xl"
>
Discover Ways To Share Your Moments With Delicious Cakes
</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Donec volutpat sem ac elit rutrum rhoncus. Donec a lacinia
metus. Morbi volutpat interdum sem, vitae aliquam odio
tempor blandit.
</p>
</div>
</div>
</div>
<div class="container mx-auto px-4 py-6 relative">
<div class="flex flex-wrap items-center mx-0">
<div class="w-full lg:order-2 lg:w-6/12">
<div class="bg-secondary-500 p-4">
<img
src="https://images.unsplash.com/photo-1519654793190-2e8a4806f1f2?ixid=MnwyMDkyMnwwfDF8c2VhcmNofDEwfHx3ZWRkaW5nJTIwY2FrZXxlbnwwfHx8fDE2MjgwMjc5NDE&ixlib=rb-1.2.1q=85&fm=jpg&crop=faces&cs=srgb&w=540&h=400&fit=crop"
class="w-full"
alt="..."
width="540"
height="360"
/>
</div>
</div>
<div class="px-12 py-6 w-full lg:order-1 lg:w-6/12">
<div class="py-4">
<h3
class="font-bold mb-2 text-3xl text-gray-800 dark:text-gray-200"
>
Elegant Wedding Collection
</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Donec volutpat sem ac elit rutrum rhoncus.
</p>
<a
href="#"
class="bg-secondary-600 hover:bg-secondary-700 inline-block px-6 py-2 text-white"
>Shop Now</a
>
</div>
</div>
</div>
<div class="flex flex-wrap items-center mx-0">
<div class="w-full lg:w-6/12">
<div class="bg-secondary-500 p-4">
<img
src="https://images.unsplash.com/photo-1545696563-af8f6ec2295a?ixid=MnwyMDkyMnwwfDF8c2VhcmNofDEyOXx8Y2FrZXxlbnwwfHx8fDE2MjgwMTc3MjA&ixlib=rb-1.2.1q=85&fm=jpg&crop=faces&cs=srgb&w=540&h=400&fit=crop"
class="w-full"
alt="..."
width="540"
height="360"
/>
</div>
</div>
<div class="px-12 py-6 w-full lg:w-6/12">
<div class="py-4">
<h3
class="font-bold mb-2 text-3xl text-gray-800 dark:text-gray-200"
>
Beautiful Birthday Cakes
</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Donec volutpat sem ac elit rutrum rhoncus.
</p>
<a
href="#"
class="bg-secondary-600 hover:bg-secondary-700 inline-block px-6 py-2 text-white"
>Order Now</a
>
</div>
</div>
</div>
<div class="flex flex-wrap items-center mx-0">
<div class="w-full lg:order-2 lg:w-6/12">
<div class="bg-secondary-500 p-4">
<img
src="https://images.unsplash.com/photo-1610866743776-55de34346082?ixid=MnwyMDkyMnwwfDF8c2VhcmNofDEyOXx8Y2FrZXxlbnwwfHx8fDE2MjgwMTc3MjA&ixlib=rb-1.2.1q=85&fm=jpg&crop=faces&cs=srgb&w=540&h=400&fit=crop"
class="w-full"
alt="..."
width="540"
height="360"
/>
</div>
</div>
<div class="px-12 py-6 w-full lg:order-1 lg:w-6/12">
<div class="py-4">
<h3
class="font-bold mb-2 text-3xl text-gray-800 dark:text-gray-200"
>
Graduation Cake Collection
</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Donec volutpat sem ac elit rutrum rhoncus.
</p>
<a
href="#"
class="bg-secondary-600 hover:bg-secondary-700 inline-block px-6 py-2 text-white"
>Shop Now</a
>
</div>
</div>
</div>
<div class="flex flex-wrap items-center mx-0">
<div class="w-full lg:w-6/12">
<div class="bg-secondary-500 p-4">
<img
src="https://images.unsplash.com/photo-1595970730806-e3df09af8038?ixid=MnwyMDkyMnwwfDF8c2VhcmNofDEyOXx8Y2FrZXxlbnwwfHx8fDE2MjgwMTc3MjA&ixlib=rb-1.2.1q=85&fm=jpg&crop=faces&cs=srgb&w=540&h=400&fit=crop"
class="w-full"
alt="..."
width="540"
height="360"
/>
</div>
</div>
<div class="px-12 py-6 w-full lg:w-6/12">
<div class="py-4">
<h3
class="font-bold mb-2 text-3xl text-gray-800 dark:text-gray-200"
>
Special Occasion Cakes
</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Donec volutpat sem ac elit rutrum rhoncus.
</p>
<a
href="#"
class="bg-secondary-600 hover:bg-secondary-700 inline-block px-6 py-2 text-white"
>View Collection</a
>
</div>
</div>
</div>
</div>
</section>
<section class="bg-color3-500 py-12 text-gray-500">
<div class="container mx-auto px-4">
<div class="-mx-4 flex flex-wrap justify-center">
<div class="p-4 w-full md:w-6/12 lg:w-4/12">
<a
href="#"
class="bg-white block group hover:text-secondary-500 p-4 relative text-secondary-500"
>
<img
src="https://images.unsplash.com/photo-1552689486-f6773047d19f?ixid=MnwyMDkyMnwwfDF8c2VhcmNofDI3fHxjYWtlfGVufDB8fHx8MTYyODAxNzQ3Mw&ixlib=rb-1.2.1q=85&fm=jpg&crop=faces&cs=srgb&w=560&h=500&fit=crop"
class="h-auto w-full"
alt="..."
width="560"
height="500"
/>
<div class="absolute bottom-12 inset-x-10">
<h2 class="mb-4 text-2xl text-gray-800">
Gluten-Free Collection
</h2>
<p class="group-hover:underline text-sm">
View Collection
</p>
</div>
</a>
</div>
<div class="p-4 w-full md:w-6/12 lg:w-4/12">
<a
href="#"
class="bg-white block group hover:text-secondary-500 p-4 relative text-secondary-500"
>
<img
src="https://images.unsplash.com/photo-1521886655570-97530ff9454b?ixid=MnwyMDkyMnwwfDF8c2VhcmNofDc0NXx8Y2FrZXxlbnwwfHx8fDE2MjgwMzM0NDA&ixlib=rb-1.2.1q=85&fm=jpg&crop=faces&cs=srgb&w=560&h=500&fit=crop"
class="h-auto w-full"
alt="..."
width="560"
height="500"
/>
<div class="absolute bottom-12 inset-x-10">
<h2 class="mb-4 text-2xl text-gray-800">
Vegan Collection
</h2>
<p class="group-hover:underline text-sm">
View Collection
</p>
</div>
</a>
</div>
<div class="p-4 w-full md:w-6/12 lg:w-4/12">
<a
href="#"
class="bg-white block group hover:text-secondary-500 p-4 relative text-secondary-500"
>
<img
src="https://images.unsplash.com/photo-1554922735-c09cab077e35?ixid=MnwyMDkyMnwwfDF8c2VhcmNofDEzMXx8Y2FrZXxlbnwwfHx8fDE2MjgwMTc3MjA&ixlib=rb-1.2.1q=85&fm=jpg&crop=faces&cs=srgb&w=560&h=500&fit=crop"
class="h-auto w-full"
alt="..."
width="560"
height="500"
/>
<div class="absolute bottom-12 inset-x-10">
<h2 class="mb-4 text-2xl text-gray-800">
Magical Collection
</h2>
<p class="group-hover:underline text-sm">
View Collection
</p>
</div>
</a>
</div>
</div>
</div>
</section>
<section class="bg-secondary-500 py-12 text-white">
<div class="container mx-auto px-4 relative">
<div class="-mx-4 flex flex-wrap justify-center">
<div class="p-4 w-full sm:w-6/12 lg:w-4/12 xl:w-3/12">
<div class="flex items-center space-x-4">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
fill="currentColor"
width="3.5rem"
height="3.5rem"
class="h-14 w-14"
>
<path
d="M19.576 43.856a.727.727 0 001.093-.958 40.505 40.505 0 01-5.45-7.837 29.8 29.8 0 015.007-1.207.727.727 0 00-.214-1.439 31.5 31.5 0 00-5.441 1.329 23.643 23.643 0 01-2.286-9.015h7.834a.728.728 0 000-1.456h-7.841a23.648 23.648 0 012.315-9.02 29.837 29.837 0 008.678 1.613v4.254a.728.728 0 001.455 0v-4.254a29.837 29.837 0 008.674-1.613 25.411 25.411 0 011.98 6 .728.728 0 001.431-.27 27.082 27.082 0 00-2.02-6.236 41.73 41.73 0 007.031-3.53 22.441 22.441 0 014.7 13.054H44.5a.728.728 0 000 1.456h2.77A.729.729 0 0048 24a24 24 0 10-28 23.668.626.626 0 00.121.011.727.727 0 00.119-1.444 22.428 22.428 0 01-13.155-7.3 39.661 39.661 0 016.752-3.372 41.725 41.725 0 005.739 8.293zm-8.75-20.582H1.472a22.423 22.423 0 014.7-13.053 41.775 41.775 0 007.019 3.525 25.132 25.132 0 00-2.365 9.528zm12.447-8.86a28.261 28.261 0 01-8.029-1.472 43.184 43.184 0 018.029-10.559zm1.454 0V2.384a43.036 43.036 0 018.03 10.559 28.373 28.373 0 01-8.03 1.471zm16.157-5.323a39.981 39.981 0 01-6.724 3.348 43.313 43.313 0 00-8.191-10.892 22.483 22.483 0 0114.915 7.544zM22.029 1.548a43.223 43.223 0 00-8.2 10.889 40.1 40.1 0 01-6.718-3.348 22.5 22.5 0 0114.918-7.541zM6.157 37.793a22.473 22.473 0 01-4.67-13.063h9.344a24.992 24.992 0 002.37 9.514 41.5 41.5 0 00-7.044 3.549zm31.891 6.814H33.2a.728.728 0 000 1.455h4.849a.728.728 0 000-1.455zm5.346-3.878a3.636 3.636 0 103.636 3.636 3.641 3.641 0 00-3.636-3.636zm0 5.818a2.182 2.182 0 112.182-2.182 2.185 2.185 0 01-2.182 2.182z"
></path>
<path
d="M27.879 40.729a3.636 3.636 0 103.636 3.636 3.64 3.64 0 00-3.636-3.636zm0 5.818a2.182 2.182 0 112.182-2.182 2.185 2.185 0 01-2.182 2.182z"
></path>
<path
d="M45.012 33.493l-3.852-9.758a.727.727 0 00-.676-.461H24a.728.728 0 00-.727.728v16.483a.728.728 0 101.455 0V24.729H34.91v9.454a.729.729 0 00.727.728H44.5a2.045 2.045 0 012.042 2.042v3.532a.728.728 0 101.455 0v-3.532a3.505 3.505 0 00-2.985-3.46zm-8.649-.037v-8.727h3.625l3.445 8.727z"
></path>
</svg>
<div>
<h2 class="font-bold text-xl">Free Shipping</h2>
<h3 class="text-opacity-50 text-white">
Free on order above $49
</h3>
</div>
</div>
</div>
<div class="p-4 w-full sm:w-6/12 lg:w-4/12 xl:w-3/12">
<div class="flex items-center space-x-4">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
fill="currentColor"
width="3.5rem"
height="3.5rem"
class="h-14 w-14"
>
<path
d="M19.256 20.894a3.072 3.072 0 10-3.072 3.07 3.076 3.076 0 003.072-3.07zm-4.689 0a1.618 1.618 0 111.617 1.617 1.619 1.619 0 01-1.617-1.617zm14.175 0a3.072 3.072 0 103.072-3.074 3.075 3.075 0 00-3.072 3.074zm4.689 0a1.617 1.617 0 11-1.617-1.619 1.62 1.62 0 011.617 1.619zm-2.122 13.014a.727.727 0 10-1.082-.97 8.591 8.591 0 01-13.095 0 .727.727 0 10-1.083.97 10.041 10.041 0 0015.26 0zM19.282 16.336a.726.726 0 101-1.052 6.021 6.021 0 00-8.2 0 .728.728 0 101 1.055 4.549 4.549 0 016.2-.003zm16.131.201a.728.728 0 00.5-1.256 6.024 6.024 0 00-8.2 0 .726.726 0 101 1.052 4.552 4.552 0 016.2 0 .72.72 0 00.5.204zM22.839 30.253l-.6.109a.728.728 0 00.128 1.444.7.7 0 00.129-.012l.605-.109a3.929 3.929 0 002.774-2.057A4.194 4.194 0 0026 25.944l-1.727-3.887a.727.727 0 00-1.329.59l1.726 3.887a2.741 2.741 0 01-.082 2.412 2.475 2.475 0 01-1.749 1.307z"
></path>
<path
d="M44.725 17.453h-.405V14.3A14.4 14.4 0 0029.849 0H18.144a14.4 14.4 0 00-14.47 14.3v3.15h-.4A3.277 3.277 0 000 20.726V31.15a3.277 3.277 0 003.272 3.273H5.53A3.276 3.276 0 008.8 31.15V20.726a3.276 3.276 0 00-3.27-3.273h-.4V14.3A12.948 12.948 0 0118.145 1.453H29.85A12.949 12.949 0 0142.867 14.3v3.15h-.4a3.276 3.276 0 00-3.267 3.276V31.15a3.276 3.276 0 003.272 3.273h.4v.242a11.892 11.892 0 01-11.884 11.879H29.12a3.138 3.138 0 00.5-1.7v-.971a3.155 3.155 0 00-3.152-3.15h-4.944a3.155 3.155 0 00-3.151 3.15v.971A3.155 3.155 0 0021.524 48h9.465a13.349 13.349 0 0013.333-13.335v-.242h.4A3.276 3.276 0 0048 31.15V20.726a3.279 3.279 0 00-3.275-3.273zM5.53 18.908a1.821 1.821 0 011.818 1.818V31.15a1.821 1.821 0 01-1.818 1.818H3.272a1.82 1.82 0 01-1.817-1.818V20.726a1.82 1.82 0 011.817-1.818zm22.638 25.939a1.7 1.7 0 01-1.7 1.7h-4.946a1.7 1.7 0 01-1.7-1.7v-.971a1.7 1.7 0 011.7-1.7h4.949a1.7 1.7 0 011.7 1.7zm18.376-13.7a1.821 1.821 0 01-1.819 1.818h-2.257a1.82 1.82 0 01-1.818-1.815V20.726a1.82 1.82 0 011.818-1.818h2.257a1.821 1.821 0 011.819 1.818z"
></path>
<path
d="M39.678 9.214a.724.724 0 00-.774-.676C26.327 9.386 18.388 5.876 14.778 3.7a.727.727 0 00-.75 1.246c3.367 2.025 10.331 5.172 21.079 5.172 1.248 0 2.546-.041 3.9-.133a.726.726 0 00.671-.771z"
></path>
</svg>
<div>
<h2 class="font-bold text-xl">Free Support</h2>
<h3 class="text-opacity-50 text-white">
Need help? Let us know
</h3>
</div>
</div>
</div>
<div class="p-4 w-full sm:w-6/12 lg:w-4/12 xl:w-3/12">
<div class="flex items-center space-x-4">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
fill="currentColor"
width="3.5rem"
height="3.5rem"
class="h-14 w-14"
>
<path
d="M41.742 24.176v-3.3a20.871 20.871 0 10-22.46 20.787v2.826a.726.726 0 00.449.672.734.734 0 00.278.056.724.724 0 00.514-.217l3.514-3.514a12.81 12.81 0 1017.7-17.308zm-21 18.553v-1.756a.727.727 0 00-.7-.727 19.4 19.4 0 1120.246-19.375v2.545a12.729 12.729 0 00-5.115-1.07h-.022v-1.475a14.28 14.28 0 10-15.186 14.235.683.683 0 00.544-.194.731.731 0 00.229-.531v-1.547l4.947 4.947zM33.7 20.872v1.566a12.842 12.842 0 00-11.089 10.214l-2.088-2.087a.727.727 0 00-1.241.514v2.505A12.818 12.818 0 1133.7 20.872zm1.476 25.675a11.355 11.355 0 01-10.067-6.128l2.118-2.119a.728.728 0 000-1.029l-3.333-3.333a11.36 11.36 0 1111.278 12.609z"
></path>
<path
d="M35.166 34.446c-2.2 0-2.66-1.278-2.66-2.352a2.522 2.522 0 012.66-2.35 2.683 2.683 0 012.5 1.533.727.727 0 101.334-.564 4.021 4.021 0 00-3.108-2.359v-1.03a.728.728 0 00-1.456 0v1.034a3.9 3.9 0 00-3.388 3.736c0 1.84 1.081 3.807 4.115 3.807 2.209 0 2.673 1.278 2.673 2.352a2.523 2.523 0 01-2.659 2.347 2.682 2.682 0 01-2.495-1.534.727.727 0 10-1.341.564 4.015 4.015 0 003.1 2.357v1.033a.728.728 0 001.456 0v-1.029a3.9 3.9 0 003.4-3.738c-.003-1.84-1.088-3.807-4.131-3.807z"
></path>
</svg>
<div>
<h2 class="font-bold text-xl">Money Back</h2>
<h3 class="text-opacity-50 text-white">
20 days money back guarantee
</h3>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-black bg-opacity-90 pt-12 text-gray-300">
<div class="container mx-auto px-4 relative">
<div class="flex flex-wrap -mx-4">
<div class="w-full p-4 xl:mr-auto xl:w-4/12">
<a
href="#"
class="font-bold font-serif hover:text-opacity-75 inline-flex items-center leading-none mb-6 text-3xl text-color3-500 uppercase"
>
<svg
version="1.0"
xmlns="http://www.w3.org/2000/svg"
width="2.5em"
xml:space="preserve"
fill="currentColor"
viewBox="0 0 100 100"
height="2.5em"
class="mr-2"
>
<path
d="M23.333 36.666C15.974 36.666 10 42.637 10 50c0 7.356 5.974 13.333 13.333 13.333h53.334C84.026 63.333 90 57.356 90 50c0-7.363-5.974-13.334-13.333-13.334a13.281 13.281 0 0 0-9.428 3.906l-4.717-4.713c3.571-3.574 8.262-5.605 13.281-5.82C72.852 18.521 62.432 10 50 10c-12.435 0-22.852 8.521-25.801 20.032 10.638.456 19.141 9.206 19.141 19.961h-6.667c0-7.363-5.977-13.333-13.333-13.333l-.007.006zM68.545 68.333l-3.75 15H60v-15h-6.667v15h-6.666v-15H40v15h-4.795l-3.75-15h-6.872L30 90h40l5.417-21.667z"
></path>
</svg>
<span>The Cake<br />Factory</span>
</a>
<p class="mb-4 text-sm">
Duis pharetra venenatis felis, ut tincidunt ipsum consequat
nec. Fusce et porttitor libero, eu aliquam nisi. Nam finibus
ullamcorper semper.
</p>
<div class="mb-6">
<a href="#" class="hover:text-color3-600">+1 234 567-890</a>
<br />
<a href="#" class="hover:text-color3-600"
>
</div>
<div class="flex-wrap inline-flex space-x-3">
<a
href="#"
aria-label="facebook"
class="hover:text-color3-600"
>
<svg
viewBox="0 0 24 24"
fill="currentColor"
class="h-5 w-5"
>
<path
d="M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4v-8.5z"
/></svg></a
><a
href="#"
aria-label="twitter"
class="hover:text-color3-600"
>
<svg
viewBox="0 0 24 24"
fill="currentColor"
class="h-5 w-5"
>
<path
d="M22.162 5.656a8.384 8.384 0 0 1-2.402.658A4.196 4.196 0 0 0 21.6 4c-.82.488-1.719.83-2.656 1.015a4.182 4.182 0 0 0-7.126 3.814 11.874 11.874 0 0 1-8.62-4.37 4.168 4.168 0 0 0-.566 2.103c0 1.45.738 2.731 1.86 3.481a4.168 4.168 0 0 1-1.894-.523v.052a4.185 4.185 0 0 0 3.355 4.101 4.21 4.21 0 0 1-1.89.072A4.185 4.185 0 0 0 7.97 16.65a8.394 8.394 0 0 1-6.191 1.732 11.83 11.83 0 0 0 6.41 1.88c7.693 0 11.9-6.373 11.9-11.9 0-.18-.005-.362-.013-.54a8.496 8.496 0 0 0 2.087-2.165z"
/></svg></a
><a
href="#"
aria-label="instagram"
class="hover:text-color3-600"
>
<svg
viewBox="0 0 24 24"
fill="currentColor"
class="h-5 w-5"
>
<path
d="M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153a4.908 4.908 0 0 1 1.153 1.772c.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 0 1-1.772-1.153 4.904 4.904 0 0 1-1.153-1.772c-.248-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.217-1.79.465-2.428a4.88 4.88 0 0 1 1.153-1.772A4.897 4.897 0 0 1 5.45 2.525c.638-.248 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm6.5-.25a1.25 1.25 0 0 0-2.5 0 1.25 1.25 0 0 0 2.5 0zM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6z"
/></svg
></a>
<a
href="#"
aria-label="linkedin"
class="hover:text-color3-600"
>
<svg
viewBox="0 0 24 24"
fill="currentColor"
class="h-5 w-5"
>
<path
d="M6.94 5a2 2 0 1 1-4-.002 2 2 0 0 1 4 .002zM7 8.48H3V21h4V8.48zm6.32 0H9.34V21h3.94v-6.57c0-3.66 4.77-4 4.77 0V21H22v-7.93c0-6.17-7.06-5.94-8.72-2.91l.04-1.68z"
/></svg
></a>
<a
href="#"
aria-label="youtube"
class="hover:text-color3-600"
>
<svg
viewBox="0 0 24 24"
fill="currentColor"
class="h-5 w-5"
>
<path
d="M21.543 6.498C22 8.28 22 12 22 12s0 3.72-.457 5.502c-.254.985-.997 1.76-1.938 2.022C17.896 20 12 20 12 20s-5.893 0-7.605-.476c-.945-.266-1.687-1.04-1.938-2.022C2 15.72 2 12 2 12s0-3.72.457-5.502c.254-.985.997-1.76 1.938-2.022C6.107 4 12 4 12 4s5.896 0 7.605.476c.945.266 1.687 1.04 1.938 2.022zM10 15.5l6-3.5-6-3.5v7z"
/></svg
></a>
</div>
</div>
<div class="w-full p-4 xl:w-2/12 sm:w-4/12">
<h2 class="font-bold mb-8 text-color3-500 text-lg uppercase">
About
</h2>
<ul>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Get Quote</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Business Deal</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Privacy Policy</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600"
>Terms of Service</a
>
</li>
</ul>
</div>
<div class="w-full p-4 xl:w-2/12 sm:w-4/12">
<h2 class="font-bold mb-8 text-color3-500 text-lg uppercase">
Services
</h2>
<ul>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Custom Cakes</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Special Cakes</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Birthday Cakes</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Wedding Cakes</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600"
>Graduation Cakes</a
>
</li>
</ul>
</div>
<div class="w-full p-4 xl:w-2/12 sm:w-4/12">
<h2 class="font-bold mb-8 text-color3-500 text-lg uppercase">
Other
</h2>
<ul>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Blog</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Shipping</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Experiences</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600">Refund Policy</a>
</li>
<li class="mb-4">
<a href="#" class="hover:text-color3-600"
>Terms of Service</a
>
</li>
</ul>
</div>
</div>
<div class="py-4 text-center">
<hr class="mb-4 opacity-25" />
<p class="text-sm">Copyright © 2021 Company Name</p>
</div>
</div>
</footer>
</div>
</div>
<script src="/dist/pgia/lib/pgia.js"></script>
<script src="/dist/js/main.js"></script>
</body>
</html>