From 148eb27afeb5fa653fc2b88a65bf06b3ad969fe0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 22:17:16 +0000 Subject: [PATCH] Update src/app/products/page.tsx --- src/app/products/page.tsx | 140 ++++++-------------------------------- 1 file changed, 19 insertions(+), 121 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 159e5b0..7b663a2 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -export default function LandingPage() { +export default function ProductsPage() { return ( @@ -57,48 +43,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={true} products={[ - { - id: "1", - name: "Traditional Sernik", - price: "£4.50", - variant: "Bakery", - imageSrc: "http://img.b2bpic.net/free-photo/cake-with-side-berries-chocolate-syrup_141793-628.jpg?_wi=2", - }, - { - id: "2", - name: "Smoked Kielbasa", - price: "£8.90", - variant: "Fresh Meats", - imageSrc: "http://img.b2bpic.net/free-photo/sliced-ham-sausage-with-bread-basket_140725-6342.jpg?_wi=2", - }, - { - id: "3", - name: "Handmade Pierogi", - price: "£6.20", - variant: "Polish Staples", - imageSrc: "http://img.b2bpic.net/free-photo/traditional-gurza-table_140725-9277.jpg?_wi=1", - }, - { - id: "4", - name: "Forest Honey", - price: "£5.50", - variant: "Seasonal", - imageSrc: "http://img.b2bpic.net/free-photo/autumn-decoration-with-smoothies_23-2147676559.jpg", - }, - { - id: "5", - name: "Melting Babka", - price: "£7.00", - variant: "Sweets", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-bread-with-coffee_23-2148695042.jpg?_wi=1", - }, - { - id: "6", - name: "Seasonal Preserves", - price: "£4.00", - variant: "Seasonal", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-arrangement-still-life_52683-127479.jpg", - }, + { id: "1", name: "Traditional Sernik", price: "£4.50", variant: "Bakery", imageSrc: "http://img.b2bpic.net/free-photo/cake-with-side-berries-chocolate-syrup_141793-628.jpg" }, + { id: "2", name: "Smoked Kielbasa", price: "£8.90", variant: "Fresh Meats", imageSrc: "http://img.b2bpic.net/free-photo/sliced-ham-sausage-with-bread-basket_140725-6342.jpg" }, + { id: "3", name: "Handmade Pierogi", price: "£6.20", variant: "Polish Staples", imageSrc: "http://img.b2bpic.net/free-photo/traditional-gurza-table_140725-9277.jpg" }, + { id: "4", name: "Forest Honey", price: "£5.50", variant: "Seasonal", imageSrc: "http://img.b2bpic.net/free-photo/autumn-decoration-with-smoothies_23-2147676559.jpg" }, + { id: "5", name: "Melting Babka", price: "£7.00", variant: "Sweets", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-bread-with-coffee_23-2148695042.jpg" }, + { id: "6", name: "Seasonal Preserves", price: "£4.00", variant: "Seasonal", imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-arrangement-still-life_52683-127479.jpg" }, ]} title="Craft & Care" description="Curated selection of our finest Polish and European delicacies." @@ -114,24 +64,8 @@ export default function LandingPage() { title="Featured Delicacies" description="Top rated products by our community." products={[ - { - id: "p1", - brand: "Wawelski", - name: "Pierogi Selection", - price: "£6.00", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/traditional-gurza-table_140725-9277.jpg?_wi=2", - }, - { - id: "p2", - brand: "Wawelski", - name: "Babka Swirl", - price: "£7.50", - rating: 5, - reviewCount: "85", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-bread-with-coffee_23-2148695042.jpg?_wi=2", - }, + { id: "p1", brand: "Wawelski", name: "Pierogi Selection", price: "£6.00", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/traditional-gurza-table_140725-9277.jpg" }, + { id: "p2", brand: "Wawelski", name: "Babka Swirl", price: "£7.50", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-bread-with-coffee_23-2148695042.jpg" }, ]} /> @@ -139,45 +73,9 @@ export default function LandingPage() {