From 845072eccd8f07a6af671452e527ddf0a908a446 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 01:33:38 +0000 Subject: [PATCH 1/2] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 104 ++++++++++-------------------------------- 1 file changed, 23 insertions(+), 81 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 9a43de6..0eb4c22 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -27,22 +27,14 @@ export default function LandingPage() { @@ -55,59 +47,23 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "c1", - brand: "Crepe", - name: "Signature Sweet Crepe", - price: "$6.95 - $11.25", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=2", - }, + id: "c1", brand: "Crepe", name: "Signature Sweet Crepe", price: "$6.95 - $11.25", rating: 5, + reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=2"}, { - id: "c2", - brand: "Crepe", - name: "Hot Savory Crepe", - price: "$12.50", - rating: 5, - reviewCount: "85", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=3", - }, + id: "c2", brand: "Crepe", name: "Hot Savory Crepe", price: "$12.50", rating: 5, + reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=3"}, { - id: "c3", - brand: "Toast", - name: "Smoked Salmon Avocado", - price: "$13.95", - rating: 5, - reviewCount: "95", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=4", - }, + id: "c3", brand: "Toast", name: "Smoked Salmon Avocado", price: "$13.95", rating: 5, + reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=4"}, { - id: "c4", - brand: "Boards", - name: "Chef's Personal Board", - price: "$16.95 - $28.95", - rating: 5, - reviewCount: "60", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=5", - }, + id: "c4", brand: "Boards", name: "Chef's Personal Board", price: "$16.95 - $28.95", rating: 5, + reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=5"}, { - id: "c5", - brand: "Salad", - name: "Caprese Salad", - price: "$12.95", - rating: 5, - reviewCount: "70", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=6", - }, + id: "c5", brand: "Salad", name: "Caprese Salad", price: "$12.95", rating: 5, + reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=6"}, { - id: "c6", - brand: "Kids", - name: "Junior Sweet Crepes", - price: "$8.95", - rating: 5, - reviewCount: "40", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=7", - }, + id: "c6", brand: "Kids", name: "Junior Sweet Crepes", price: "$8.95", rating: 5, + reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-sitting_171337-17101.jpg?_wi=7"}, ]} title="Our Menu" description="Exquisite selections prepared to satisfy your cravings." @@ -132,17 +88,9 @@ export default function LandingPage() { description="Handcrafted coffee blends." products={[ { - id: "b1", - name: "Signature Latte", - price: "$5.50", - imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=2", - }, + id: "b1", name: "Signature Latte", price: "$5.50", imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=2"}, { - id: "b2", - name: "Gold Drip Coffee", - price: "$4.00", - imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=3", - }, + id: "b2", name: "Gold Drip Coffee", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg?_wi=3"}, ]} /> @@ -153,23 +101,17 @@ export default function LandingPage() { { items: [ { - label: "24 Elm St, West Springfield, MA", - }, + label: "24 Elm St, Westfield, MA 01085"}, { - label: "Open Daily | 7:00 AM - 4:00 PM", - }, + label: "Open Daily | 7:00 AM - 4:00 PM"}, ], }, { items: [ { - label: "Instagram", - href: "https://instagram.com", - }, + label: "Instagram", href: "https://instagram.com"}, { - label: "Facebook", - href: "https://facebook.com", - }, + label: "Facebook", href: "https://facebook.com"}, ], }, ]} @@ -179,4 +121,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 8e2db3779d28f395d7be578c1ddf8d0726b2c9c2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 01:33:39 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 409b935..e56039d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -123,7 +123,7 @@ export default function LandingPage() {