From a0f3ccf9f1995f5b1d31df29687f5be6bb60606d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 08:26:18 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 269 ++++++++--------------------------------------- 1 file changed, 43 insertions(+), 226 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c005028..d84cd32 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,129 +29,40 @@ export default function LandingPage() {
@@ -160,12 +71,7 @@ export default function LandingPage() { useInvertedBackground={false} tag="About Us" title="Our Philosophy of Taste" - buttons={[ - { - text: "Learn Our Story", - href: "#", - }, - ]} + buttons={[{ text: "Learn Our Story", href: "#" }]} /> @@ -176,42 +82,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Truffle Risotto", - price: "$38", - imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-portrait-outdoor_624325-2930.jpg?_wi=2", - }, - { - id: "p2", - name: "Artisan Bread Basket", - price: "$12", - imageSrc: "http://img.b2bpic.net/free-photo/bread-menu-restaurant_624325-713.jpg?_wi=2", - }, - { - id: "p3", - name: "Elderflower Spritz", - price: "$16", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-bartender-preparing-drink_23-2150494228.jpg?_wi=2", - }, - { - id: "p4", - name: "Prime Wagyu Steak", - price: "$65", - imageSrc: "http://img.b2bpic.net/free-photo/fried-ribs-with-sliced-vegetables_140725-3653.jpg?_wi=2", - }, - { - id: "p5", - name: "Midnight Dark Chocolate", - price: "$18", - imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-cake-cake-with-waffles-berries-powdered-sugar-green-sauce_140725-71823.jpg?_wi=2", - }, - { - id: "p6", - name: "Seafood Linguine", - price: "$42", - imageSrc: "http://img.b2bpic.net/free-photo/salmon-alfredo-with-toasted-smoked-salmon-parsley-parmesan_140725-1417.jpg?_wi=2", - }, + { id: "p1", name: "Truffle Risotto", price: "$38", imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-portrait-outdoor_624325-2930.jpg" }, + { id: "p2", name: "Artisan Bread Basket", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/bread-menu-restaurant_624325-713.jpg" }, + { id: "p3", name: "Elderflower Spritz", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-bartender-preparing-drink_23-2150494228.jpg" }, + { id: "p4", name: "Prime Wagyu Steak", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/fried-ribs-with-sliced-vegetables_140725-3653.jpg" }, + { id: "p5", name: "Midnight Dark Chocolate", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-cake-cake-with-waffles-berries-powdered-sugar-green-sauce_140725-71823.jpg" }, + { id: "p6", name: "Seafood Linguine", price: "$42", imageSrc: "http://img.b2bpic.net/free-photo/salmon-alfredo-with-toasted-smoked-salmon-parsley-parmesan_140725-1417.jpg" } ]} title="Signature Selections" description="Curated dishes designed to delight the palate." @@ -220,63 +96,20 @@ export default function LandingPage() {
-- 2.49.1