Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-05-08 21:13:24 +00:00

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Visit",
id: "/location",
},
name: "Visit", id: "/location"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Indialantic Coffee"
/>
@@ -58,59 +48,23 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "p1",
brand: "Coffee",
name: "Espresso",
price: "$4.00",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ck4s10",
imageAlt: "espresso shot close up cup",
},
id: "p1", brand: "Coffee", name: "Espresso", price: "$4.00", rating: 5,
reviewCount: "120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ck4s10", imageAlt: "espresso shot close up cup"},
{
id: "p2",
brand: "Coffee",
name: "Cold Brew",
price: "$5.00",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=i5tshp",
imageAlt: "cold brew coffee iced glass",
},
id: "p2", brand: "Coffee", name: "Cold Brew", price: "$5.00", rating: 5,
reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=i5tshp", imageAlt: "cold brew coffee iced glass"},
{
id: "p3",
brand: "Coffee",
name: "Matcha Latte",
price: "$6.00",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2e2c8m",
imageAlt: "matcha latte green drink",
},
id: "p3", brand: "Coffee", name: "Matcha Latte", price: "$6.00", rating: 5,
reviewCount: "80", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2e2c8m", imageAlt: "matcha latte green drink"},
{
id: "p4",
brand: "Food",
name: "Croissant",
price: "$3.50",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=787gmz",
imageAlt: "fresh baked croissant pastry",
},
id: "p4", brand: "Food", name: "Croissant", price: "$3.50", rating: 5,
reviewCount: "150", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=787gmz", imageAlt: "fresh baked croissant pastry"},
{
id: "p5",
brand: "Coffee",
name: "Iced Coffee",
price: "$4.50",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=55co57",
imageAlt: "iced coffee coffee shop glass",
},
id: "p5", brand: "Coffee", name: "Iced Coffee", price: "$4.50", rating: 5,
reviewCount: "60", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=55co57", imageAlt: "iced coffee coffee shop glass"},
{
id: "p6",
brand: "Food",
name: "Avocado Toast",
price: "$8.00",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lxbi67",
imageAlt: "avocado toast cafe food",
},
id: "p6", brand: "Food", name: "Avocado Toast", price: "$8.00", rating: 5,
reviewCount: "200", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lxbi67", imageAlt: "avocado toast cafe food"},
]}
title="Our Menu"
description="Hand-crafted coffee and breakfast staples."
@@ -127,21 +81,9 @@ export default function LandingPage() {
description="Rotating menu items."
products={[
{
id: "s1",
name: "Sea Salt Mocha",
price: "$6.50",
variant: "Seasonal",
imageSrc: "asset://menu-extra-1",
imageAlt: "mocha drink",
},
id: "s1", name: "Sea Salt Mocha", price: "$6.50", variant: "Seasonal", imageSrc: "asset://menu-extra-1", imageAlt: "mocha drink"},
{
id: "s2",
name: "Sunshine Cold Brew",
price: "$5.50",
variant: "Summer",
imageSrc: "asset://menu-extra-2",
imageAlt: "iced cold brew",
},
id: "s2", name: "Sunshine Cold Brew", price: "$5.50", variant: "Summer", imageSrc: "asset://menu-extra-2", imageAlt: "iced cold brew"},
]}
/>
</div>
@@ -151,42 +93,27 @@ export default function LandingPage() {
logoText="Indialantic Coffee"
columns={[
{
title: "Menu",
items: [
title: "Menu", items: [
{
label: "Espresso",
href: "/menu",
},
label: "Espresso", href: "/menu"},
{
label: "Pastries",
href: "/menu",
},
label: "Pastries", href: "/menu"},
],
},
{
title: "Visit",
items: [
title: "Visit", items: [
{
label: "Location",
href: "/location",
},
label: "Location", href: "/location"},
{
label: "Hours",
href: "/location",
},
label: "Hours", href: "/location"},
],
},
{
title: "Social",
items: [
title: "Social", items: [
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Facebook",
href: "#",
},
label: "Facebook", href: "#"},
],
},
]}