diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 22983e6..5e8a4fb 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -26,28 +26,14 @@ export default function LandingPage() { @@ -58,48 +44,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Espresso Roast", - price: "$3.50", - imageSrc: "http://img.b2bpic.net/free-photo/ceramic-cups-coffee-machine_23-2147830564.jpg?_wi=2", - imageAlt: "Espresso cup", - }, - { - id: "p2", - name: "Latte Supreme", - price: "$4.50", - imageSrc: "http://img.b2bpic.net/free-photo/coffee-collage-with-plant_23-2151876150.jpg?_wi=2", - imageAlt: "Latte art", - }, - { - id: "p3", - name: "Cappuccino", - price: "$4.75", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-milk_23-2148337185.jpg?_wi=2", - imageAlt: "Cappuccino", - }, - { - id: "p4", - name: "Dark Chocolate Tart", - price: "$5.00", - imageSrc: "http://img.b2bpic.net/free-photo/sweet-dessert-custard-tart-with-raspberry-top_74190-6069.jpg?_wi=2", - imageAlt: "Chocolate tart", - }, - { - id: "p5", - name: "Almond Croissant", - price: "$3.75", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg?_wi=2", - imageAlt: "Almond croissant", - }, - { - id: "p6", - name: "Blueberry Muffin", - price: "$3.25", - imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-delicious-blueberry-muffins_114579-49441.jpg", - imageAlt: "Blueberry muffin", - }, + { id: "p1", name: "Espresso Roast", price: "$3.50", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-cups-coffee-machine_23-2147830564.jpg", imageAlt: "Espresso cup" }, + { id: "p2", name: "Latte Supreme", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/coffee-collage-with-plant_23-2151876150.jpg", imageAlt: "Latte art" }, + { id: "p3", name: "Cappuccino", price: "$4.75", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-milk_23-2148337185.jpg", imageAlt: "Cappuccino" }, + { id: "p4", name: "Dark Chocolate Tart", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/sweet-dessert-custard-tart-with-raspberry-top_74190-6069.jpg", imageAlt: "Chocolate tart" }, + { id: "p5", name: "Almond Croissant", price: "$3.75", imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg", imageAlt: "Almond croissant" }, + { id: "p6", name: "Blueberry Muffin", price: "$3.25", imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-delicious-blueberry-muffins_114579-49441.jpg", imageAlt: "Blueberry muffin" }, ]} title="Our Signature Menu" description="Handcrafted coffee blends, signature drinks, and fresh daily pastries." @@ -115,20 +65,8 @@ export default function LandingPage() { title="Quality Stats" description="See the precision in our menu items." metrics={[ - { - id: "1", - value: "20", - title: "Drink Types", - description: "Crafted daily", - icon: Coffee, - }, - { - id: "2", - value: "10", - title: "Pastry Types", - description: "Freshly baked", - icon: Cookie, - }, + { id: "1", value: "20", title: "Drink Types", description: "Crafted daily", icon: Coffee }, + { id: "2", value: "10", title: "Pastry Types", description: "Freshly baked", icon: Cookie }, ]} /> @@ -136,53 +74,9 @@ export default function LandingPage() {