From 11a07c57155e406520a4ec7fdd8251eb316ea88e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 04:19:19 +0000 Subject: [PATCH] Update src/app/products/page.tsx --- src/app/products/page.tsx | 116 ++++++-------------------------------- 1 file changed, 18 insertions(+), 98 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 9456a81..e7bb7ac 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 ProductCardOne from '@/components/sections/product/ProductCardOne'; -export default function LandingPage() { +export default function ProductsPage() { return ( @@ -53,42 +42,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Ergo Desk Pro", - price: "₹10,91,500 Revenue", - imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132302.jpg", - }, - { - id: "p2", - name: "Air Mesh Chair", - price: "67 Units Sold", - imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108732.jpg", - }, - { - id: "p3", - name: "Monitor Riser", - price: "144 Units Sold", - imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913288.jpg", - }, - { - id: "p4", - name: "Cable Organizer", - price: "Essential", - imageSrc: "http://img.b2bpic.net/free-photo/working-place-designer-closeup_93675-131355.jpg", - }, - { - id: "p5", - name: "StandDesk Elite", - price: "Premium", - imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132314.jpg", - }, - { - id: "p6", - name: "Lumbar Support", - price: "Seating", - imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108704.jpg", - }, + { id: "p1", name: "Ergo Desk Pro", price: "₹10,91,500 Revenue", imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132302.jpg" }, + { id: "p2", name: "Air Mesh Chair", price: "67 Units Sold", imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108732.jpg" }, + { id: "p3", name: "Monitor Riser", price: "144 Units Sold", imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913288.jpg" }, + { id: "p4", name: "Cable Organizer", price: "Essential", imageSrc: "http://img.b2bpic.net/free-photo/working-place-designer-closeup_93675-131355.jpg" }, + { id: "p5", name: "StandDesk Elite", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132314.jpg" }, + { id: "p6", name: "Lumbar Support", price: "Seating", imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108704.jpg" }, ]} title="Ergonomic Catalogue" description="Premium selections for the modern workspace." @@ -104,20 +63,9 @@ export default function LandingPage() { title="Best Sellers" description="Our most trusted ergonomic gear." products={[ - { - id: "feat-1", - name: "ProMesh Chair", - price: "₹15,000", - variant: "Black", - imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108725.jpg", - }, - { - id: "feat-2", - name: "Minimalist Desk", - price: "₹22,000", - variant: "White Oak", - imageSrc: "http://img.b2bpic.net/free-photo/modern-small-chair-with-blue-cushion-it-room_181624-44108.jpg", - }, + { id: "feat-1", name: "ProMesh Chair", price: "₹15,000", variant: "Black", imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108725.jpg" }, + { id: "feat-2", name: "Minimalist Desk", price: "₹22,000", variant: "White Oak", imageSrc: "http://img.b2bpic.net/free-photo/modern-small-chair-with-blue-cushion-it-room_181624-44108.jpg" }, + { id: "feat-3", name: "Task Lamp", price: "₹4,000", variant: "Matte", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797749.jpg" }, ]} /> @@ -125,37 +73,9 @@ export default function LandingPage() {