Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d877ee4d66 | |||
| ea9266e406 |
111
src/app/page.tsx
111
src/app/page.tsx
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "Visit",
|
||||
id: "visit",
|
||||
},
|
||||
name: "Visit", id: "visit"},
|
||||
]}
|
||||
brandName="Days Treats"
|
||||
/>
|
||||
@@ -53,41 +45,26 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Authentic Brazilian Flavors in the Heart of Mundelein"
|
||||
description="Experience the warmth of Brazil with our handmade pão de queijo, brigadeiros, and specialty desserts. Baked fresh daily."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "#",
|
||||
},
|
||||
text: "View Menu", href: "#menu"},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-chocolate-cookies-arrangement_23-2150714422.jpg",
|
||||
imageAlt: "Artisanal Brazilian baked goods",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-chocolate-cookies-arrangement_23-2150714422.jpg", imageAlt: "Artisanal Brazilian baked goods"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-round-pie-with-candies-grey-background-sugar-cookies-biscuit-cake-pie-sweet-tea_140725-96694.jpg?_wi=1",
|
||||
imageAlt: "Fresh Pão de Queijo",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-round-pie-with-candies-grey-background-sugar-cookies-biscuit-cake-pie-sweet-tea_140725-96694.jpg?_wi=1", imageAlt: "Fresh Pão de Queijo"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/citrus-grog-coctail_8353-1207.jpg?_wi=1",
|
||||
imageAlt: "Brazilian Fruit Juices",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/citrus-grog-coctail_8353-1207.jpg?_wi=1", imageAlt: "Brazilian Fruit Juices"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-cake-with-sugar-powder-red-strawberries-cinnamon-tea-white-desk-berry-fruit-cake_140725-22936.jpg?_wi=1",
|
||||
imageAlt: "Specialty Desserts",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-cake-with-sugar-powder-red-strawberries-cinnamon-tea-white-desk-berry-fruit-cake_140725-22936.jpg?_wi=1", imageAlt: "Specialty Desserts"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-homemade-croissants-tray_23-2148543661.jpg",
|
||||
imageAlt: "Treats display",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-homemade-croissants-tray_23-2148543661.jpg", imageAlt: "Treats display"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-girl-drinking-coffee-cafe_1157-20655.jpg",
|
||||
imageAlt: "Bakery interior",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-girl-drinking-coffee-cafe_1157-20655.jpg", imageAlt: "Bakery interior"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -111,32 +88,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Bakery",
|
||||
name: "Fresh Bakes",
|
||||
price: "Various",
|
||||
rating: 5,
|
||||
reviewCount: "20",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-round-pie-with-candies-grey-background-sugar-cookies-biscuit-cake-pie-sweet-tea_140725-96694.jpg?_wi=2",
|
||||
},
|
||||
id: "p1", brand: "Bakery", name: "Fresh Bakes", price: "Various", rating: 5,
|
||||
reviewCount: "20", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-round-pie-with-candies-grey-background-sugar-cookies-biscuit-cake-pie-sweet-tea_140725-96694.jpg?_wi=2"},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Beverage",
|
||||
name: "Natural Juices",
|
||||
price: "Various",
|
||||
rating: 5,
|
||||
reviewCount: "15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/citrus-grog-coctail_8353-1207.jpg?_wi=2",
|
||||
},
|
||||
id: "p2", brand: "Beverage", name: "Natural Juices", price: "Various", rating: 5,
|
||||
reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/citrus-grog-coctail_8353-1207.jpg?_wi=2"},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Dessert",
|
||||
name: "Specialty Tiramisu",
|
||||
price: "$6.00",
|
||||
rating: 5,
|
||||
reviewCount: "25",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-cake-with-sugar-powder-red-strawberries-cinnamon-tea-white-desk-berry-fruit-cake_140725-22936.jpg?_wi=2",
|
||||
},
|
||||
id: "p3", brand: "Dessert", name: "Specialty Tiramisu", price: "$6.00", rating: 5,
|
||||
reviewCount: "25", imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-cake-with-sugar-powder-red-strawberries-cinnamon-tea-white-desk-berry-fruit-cake_140725-22936.jpg?_wi=2"},
|
||||
]}
|
||||
title="Menu Highlights"
|
||||
description="Indulge in our selection of freshly baked goods and refreshing drinks."
|
||||
@@ -148,16 +107,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"@DayTreatsBakery",
|
||||
]}
|
||||
"@DayTreatsBakery"]}
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-photo/top-view-homemade-croissants-tray_23-2148543661.jpg",
|
||||
"http://img.b2bpic.net/free-photo/fashion-girl-drinking-coffee-cafe_1157-20655.jpg",
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-delicious-food-arrangement_23-2149179569.jpg",
|
||||
"http://img.b2bpic.net/free-photo/beautiful-tea-party-composition-table_23-2149064416.jpg",
|
||||
"http://img.b2bpic.net/free-photo/side-view-hand-holding-brush_23-2149707954.jpg",
|
||||
"http://img.b2bpic.net/free-photo/homemade-chocolate-peanut-butter-ice-cream-cups-recipe_53876-100112.jpg",
|
||||
]}
|
||||
"http://img.b2bpic.net/free-photo/top-view-homemade-croissants-tray_23-2148543661.jpg", "http://img.b2bpic.net/free-photo/fashion-girl-drinking-coffee-cafe_1157-20655.jpg", "http://img.b2bpic.net/free-photo/flat-lay-delicious-food-arrangement_23-2149179569.jpg", "http://img.b2bpic.net/free-photo/beautiful-tea-party-composition-table_23-2149064416.jpg", "http://img.b2bpic.net/free-photo/side-view-hand-holding-brush_23-2149707954.jpg", "http://img.b2bpic.net/free-photo/homemade-chocolate-peanut-butter-ice-cream-cups-recipe_53876-100112.jpg"]}
|
||||
title="Follow Us on Instagram"
|
||||
description="See our latest creations and daily bakes."
|
||||
/>
|
||||
@@ -169,28 +121,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "h1",
|
||||
title: "Opening Hours",
|
||||
content: "Wed-Sun: 10AM - 6PM | Closed: Mon-Tue",
|
||||
},
|
||||
id: "h1", title: "Opening Hours", content: "Wed-Sun: 10AM - 6PM | Closed: Mon-Tue"},
|
||||
{
|
||||
id: "h2",
|
||||
title: "Location",
|
||||
content: "300 N Lake St, Mundelein, IL",
|
||||
},
|
||||
id: "h2", title: "Location", content: "300 N Lake St, Mundelein, IL"},
|
||||
{
|
||||
id: "h3",
|
||||
title: "Contact",
|
||||
content: "(224) 424-9553",
|
||||
},
|
||||
id: "h3", title: "Contact", content: "(224) 424-9553"},
|
||||
]}
|
||||
ctaTitle="Visit Us Today!"
|
||||
ctaDescription="We are open Wednesday to Sunday from 10 AM. Find us at 300 N Lake St, Mundelein, IL or call us at (224) 424-9553."
|
||||
ctaIcon={MapPin}
|
||||
ctaButton={{
|
||||
text: "Get Directions",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Get Directions", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -201,9 +142,7 @@ export default function LandingPage() {
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
href: "#", ariaLabel: "Instagram"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user