From 204813495d3c7c750719a8078d46bd1421e8fc4b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 19:42:43 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 222 +++++++---------------------------------------- 1 file changed, 30 insertions(+), 192 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bdbb796..18ed49f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,70 +28,27 @@ export default function LandingPage() {
@@ -114,48 +71,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { - id: "1", - name: "Spanish Latte", - price: "$5.50", - variant: "Creamy & Cinnamon", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-coconut-candies-with-cup-coffee-white-surface_140725-80912.jpg", - }, - { - id: "2", - name: "Classic Croissant", - price: "$4.00", - variant: "House-made", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-croissant-plate-trivet-with-lemon-tangerine-kumquat-flour-ginger-with-spoon-honey-dipper-rolling-pin-black-background_141793-130598.jpg", - }, - { - id: "3", - name: "Iced Matcha", - price: "$6.00", - variant: "Premium Ceremonial", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-drinking-iced-coffee_23-2149624100.jpg", - }, - { - id: "4", - name: "Caramel Macchiato", - price: "$5.75", - variant: "Rich & Sweet", - imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-glasses_1220-3572.jpg", - }, - { - id: "5", - name: "Conchita", - price: "$3.50", - variant: "Sweet Bread", - imageSrc: "http://img.b2bpic.net/free-photo/3d-miniature-bakery-product_23-2151862561.jpg", - }, - { - id: "6", - name: "Cookie Butter Latte", - price: "$6.25", - variant: "Signature Drink", - imageSrc: "http://img.b2bpic.net/free-photo/barista-preparing-beverage_23-2149458132.jpg", - }, + { id: "1", name: "Spanish Latte", price: "$5.50", variant: "Creamy & Cinnamon", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-coconut-candies-with-cup-coffee-white-surface_140725-80912.jpg" }, + { id: "2", name: "Classic Croissant", price: "$4.00", variant: "House-made", imageSrc: "http://img.b2bpic.net/free-photo/side-view-croissant-plate-trivet-with-lemon-tangerine-kumquat-flour-ginger-with-spoon-honey-dipper-rolling-pin-black-background_141793-130598.jpg" }, + { id: "3", name: "Iced Matcha", price: "$6.00", variant: "Premium Ceremonial", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-drinking-iced-coffee_23-2149624100.jpg" }, ]} title="Our Menu" description="Explore our selection of specialty drinks and house-made pastries." @@ -168,60 +86,14 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} testimonials={[ - { - id: "1", - name: "Ben S.", - role: "Regular", - company: "Local Resident", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/coquette-watercolor-pattern_23-2151843222.jpg", - }, - { - id: "2", - name: "Maria G.", - role: "Foodie", - company: "Local Resident", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/samesex-homosexual-female-partners-drinking-coffee-eating-cakes-restaurant_273609-9461.jpg", - }, - { - id: "3", - name: "David K.", - role: "Student", - company: "University", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-women-reading-menu-cafe_23-2147785423.jpg", - }, - { - id: "4", - name: "Sarah J.", - role: "Parent", - company: "Local Resident", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/isolated-shot-cheerful-girl-smiles-happily-expresses-sincere-feelings-drinks-takeaway-coffee_273609-45679.jpg", - }, - { - id: "5", - name: "Elena R.", - role: "Creative", - company: "Freelancer", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-brunette-woman-drinks-morning-coffee-cafe_613910-12134.jpg", - }, + { id: "1", name: "Ben S.", role: "Regular", company: "Local Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/coquette-watercolor-pattern_23-2151843222.jpg" }, + { id: "2", name: "Maria G.", role: "Foodie", company: "Local Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/samesex-homosexual-female-partners-drinking-coffee-eating-cakes-restaurant_273609-9461.jpg" }, + { id: "3", name: "David K.", role: "Student", company: "University", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-women-reading-menu-cafe_23-2147785423.jpg" }, ]} kpiItems={[ - { - value: "4.9", - label: "Rating", - }, - { - value: "1k+", - label: "Happy Neighbors", - }, - { - value: "5+", - label: "Years Served", - }, + { value: "4.9", label: "Rating" }, + { value: "1k+", label: "Happy Neighbors" }, + { value: "5+", label: "Years Served" }, ]} title="Customer Love" description="See why our neighbors call us their cozy home corner." @@ -231,22 +103,11 @@ export default function LandingPage() {
@@ -254,41 +115,18 @@ export default function LandingPage() {