From db95d86ab600d697eae88ac3f5cce3c138ba4007 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 06:29:09 +0000 Subject: [PATCH] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 103 ++++++--------------------------------- 1 file changed, 14 insertions(+), 89 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 7b90722..3cb9d38 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -export default function LandingPage() { +export default function GalleryPage() { return ( @@ -63,22 +45,8 @@ export default function LandingPage() { title="Gallery" description="A glimpse into the b Café experience." products={[ - { - id: "g1", - brand: "Interior", - name: "Lounge", - price: "Visual", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-image-red-coffee-cup-table_613910-12073.jpg", - }, - { - id: "g2", - brand: "Culinary", - name: "Plating", - price: "Visual", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/lamb-wrapped-with-dough-tomato-sauce_114579-2133.jpg", - }, + { id: "g1", brand: "Interior", name: "Lounge", price: "Visual", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/closeup-image-red-coffee-cup-table_613910-12073.jpg" }, + { id: "g2", brand: "Culinary", name: "Plating", price: "Visual", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/lamb-wrapped-with-dough-tomato-sauce_114579-2133.jpg" }, ]} /> @@ -86,16 +54,9 @@ export default function LandingPage() {
@@ -103,45 +64,9 @@ export default function LandingPage() {