diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 75e79bd..8e81221 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -26,25 +26,15 @@ export default function LandingPage() { @@ -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"}, ]} /> @@ -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: "#"}, ], }, ]}