From 2dd1906ae9c1dd2e0929f712bce0076e37460672 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 7 May 2026 06:43:30 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 190 +++++++++-------------------------------------- 1 file changed, 34 insertions(+), 156 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 034bb0f..c201fb1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,69 +30,29 @@ export default function LandingPage() {
@@ -112,42 +72,12 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Steak Panini", - price: "$16", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-table-full-delicious-food-assortment_23-2149141340.jpg", - }, - { - id: "p2", - name: "Cappuccino", - price: "$6", - imageSrc: "http://img.b2bpic.net/free-photo/zebra-pattern-biscuits-cup-tea-marble-surface_114579-73344.jpg", - }, - { - id: "p3", - name: "Lasagna", - price: "$19", - imageSrc: "http://img.b2bpic.net/free-photo/cheese-platter-with-grapes-glass-red-wine_114579-1782.jpg", - }, - { - id: "p4", - name: "Garden Salad", - price: "$14", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-plate-with-keto-diet-food-nuts_23-2149260311.jpg", - }, - { - id: "p5", - name: "Gelato Cup", - price: "$8", - imageSrc: "http://img.b2bpic.net/free-photo/tasty-cup-brazilian-dessert-with-berries_23-2149871594.jpg", - }, - { - id: "p6", - name: "Pastry Selection", - price: "$5", - imageSrc: "http://img.b2bpic.net/free-photo/croissants-wooden-box-jam-pot-aside-grey-table_176420-274.jpg", - }, + { id: "p1", name: "Steak Panini", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/top-view-table-full-delicious-food-assortment_23-2149141340.jpg" }, + { id: "p2", name: "Cappuccino", price: "$6", imageSrc: "http://img.b2bpic.net/free-photo/zebra-pattern-biscuits-cup-tea-marble-surface_114579-73344.jpg" }, + { id: "p3", name: "Lasagna", price: "$19", imageSrc: "http://img.b2bpic.net/free-photo/cheese-platter-with-grapes-glass-red-wine_114579-1782.jpg" }, + { id: "p4", name: "Garden Salad", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-plate-with-keto-diet-food-nuts_23-2149260311.jpg" }, + { id: "p5", name: "Gelato Cup", price: "$8", imageSrc: "http://img.b2bpic.net/free-photo/tasty-cup-brazilian-dessert-with-berries_23-2149871594.jpg" }, + { id: "p6", name: "Pastry Selection", price: "$5", imageSrc: "http://img.b2bpic.net/free-photo/croissants-wooden-box-jam-pot-aside-grey-table_176420-274.jpg" }, ]} title="Our Signature Menu" description="Freshly prepared daily with love." @@ -161,17 +91,11 @@ export default function LandingPage() { useInvertedBackground={true} negativeCard={{ items: [ - "No artificial preservatives", - "Zero frozen shortcuts", - "No noisy, rushed environment", - ], + "No artificial preservatives", "Zero frozen shortcuts", "No noisy, rushed environment"], }} positiveCard={{ items: [ - "Fresh, locally sourced produce", - "Traditional family recipes", - "Warm, European-style ambiance", - ], + "Fresh, locally sourced produce", "Traditional family recipes", "Warm, European-style ambiance"], }} title="The Napoli Difference" description="Why locals choose us daily." @@ -180,44 +104,20 @@ export default function LandingPage() {
-- 2.49.1