From 48332326ad72ed633dea9c704e58f005457af77b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 15:26:48 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 91 ++++++++++++------------------------------------ 1 file changed, 22 insertions(+), 69 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7e84409..6b1821f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,9 +6,8 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import HeroLogo from '@/components/sections/hero/HeroLogo'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import ProductCatalogItem from '@/components/ecommerce/productCatalog/ProductCatalogItem'; -import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; export default function LandingPage() { return ( @@ -28,14 +27,10 @@ export default function LandingPage() { @@ -70,24 +65,12 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "p1", name: "Classic Latte", price: "$4.50", rating: 5, - reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg"}, - { - id: "p2", name: "Signature Cold Brew", price: "$5.00", rating: 5, - reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-iced-coffee-with-condensation-dark-background_84443-83807.jpg"}, - { - id: "p3", name: "Dark Roast Americano", price: "$3.50", rating: 4, - reviewCount: "64", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-hot-coffee-drink_53876-13419.jpg"}, - { - id: "p4", name: "Velvet Cappuccino", price: "$4.75", rating: 5, - reviewCount: "152", imageSrc: "http://img.b2bpic.net/free-photo/hot-coffee-cup-with-nice-latte-art-decoration-old-wooden-texture-table_1150-6392.jpg"}, - { - id: "p5", name: "Mocha Bliss", price: "$5.25", rating: 5, - reviewCount: "97", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-tasty-coffee-assortment_23-2149514291.jpg"}, - { - id: "p6", name: "Pour Over Special", price: "$6.00", rating: 5, - reviewCount: "43", imageSrc: "http://img.b2bpic.net/free-photo/man-making-drip-fresh-coffee-vintage-coffee-shop_1150-14511.jpg"}, + { id: "p1", brand: "Brew & Bean", name: "Classic Latte", price: "$4.50", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg" }, + { id: "p2", brand: "Brew & Bean", name: "Signature Cold Brew", price: "$5.00", rating: 5, reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-iced-coffee-with-condensation-dark-background_84443-83807.jpg" }, + { id: "p3", brand: "Brew & Bean", name: "Dark Roast Americano", price: "$3.50", rating: 4, reviewCount: "64", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-hot-coffee-drink_53876-13419.jpg" }, + { id: "p4", brand: "Brew & Bean", name: "Velvet Cappuccino", price: "$4.75", rating: 5, reviewCount: "152", imageSrc: "http://img.b2bpic.net/free-photo/hot-coffee-cup-with-nice-latte-art-decoration-old-wooden-texture-table_1150-6392.jpg" }, + { id: "p5", brand: "Brew & Bean", name: "Mocha Bliss", price: "$5.25", rating: 5, reviewCount: "97", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-tasty-coffee-assortment_23-2149514291.jpg" }, + { id: "p6", brand: "Brew & Bean", name: "Pour Over Special", price: "$6.00", rating: 5, reviewCount: "43", imageSrc: "http://img.b2bpic.net/free-photo/man-making-drip-fresh-coffee-vintage-coffee-shop_1150-14511.jpg" }, ]} title="Signature Brews" description="Handcrafted coffee drinks prepared by our expert baristas using freshly ground local beans." @@ -98,16 +81,11 @@ export default function LandingPage() { -
- -
-