From a9dd558b9b1565ba0a1522e62dced814c3fefbec Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 07:09:37 +0000 Subject: [PATCH] Update src/app/products/page.tsx --- src/app/products/page.tsx | 72 +++++++-------------------------------- 1 file changed, 13 insertions(+), 59 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 2e15b96..c2201c4 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -15,7 +15,7 @@ export default function ProductsPage() { borderRadius="rounded" contentWidth="compact" sizing="mediumLargeSizeLargeTitles" - background="noise" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="double-inset" secondaryButtonStyle="layered" @@ -45,61 +45,23 @@ export default function ProductsPage() { tagAnimation="slide-up" buttons={[ { - text: "Back to Home", - href: "/", - }, + text: "Back to Home", href: "/"}, ]} buttonAnimation="slide-up" textboxLayout="default" products={[ { - id: "product-1", - name: "Classic Casual Shoes", - price: "₹1,299", - variant: "Available in Black, Brown, White", - imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg?_wi=3", - imageAlt: "mens casual shoes", - }, + id: "product-1", name: "Classic Casual Shoes", price: "₹1,299", variant: "Available in Black, Brown, White", imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg", imageAlt: "mens casual shoes"}, { - id: "product-2", - name: "Women's Fashion Heels", - price: "₹1,599", - variant: "Available in Red, Black, Nude", - imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-beautiful-woman-blue-printed-dress-red-bag-sunglasses-happy-mood-fashionable-outfit-trendy-apparel-smiling-sitting-summer-yellow-high-heel-shoes-accessories_285396-3824.jpg?_wi=3", - imageAlt: "womens fashion shoes", - }, + id: "product-2", name: "Women's Fashion Heels", price: "₹1,599", variant: "Available in Red, Black, Nude", imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-beautiful-woman-blue-printed-dress-red-bag-sunglasses-happy-mood-fashionable-outfit-trendy-apparel-smiling-sitting-summer-yellow-high-heel-shoes-accessories_285396-3824.jpg", imageAlt: "womens fashion shoes"}, { - id: "product-3", - name: "Kids Running Shoes", - price: "₹899", - variant: "Available in Blue, Pink, Green", - imageSrc: "http://img.b2bpic.net/free-photo/huge-variety-female-shoes-bags-different-colors-shelves-shop_627829-10311.jpg?_wi=3", - imageAlt: "kids shoes", - }, + id: "product-3", name: "Kids Running Shoes", price: "₹899", variant: "Available in Blue, Pink, Green", imageSrc: "http://img.b2bpic.net/free-photo/huge-variety-female-shoes-bags-different-colors-shelves-shop_627829-10311.jpg", imageAlt: "kids shoes"}, { - id: "product-4", - name: "Sports Athletic Shoes", - price: "₹1,499", - variant: "Available in Black, White, Red", - imageSrc: "http://img.b2bpic.net/free-photo/active-woman-running-stairs_23-2148381928.jpg?_wi=3", - imageAlt: "sports shoes", - }, + id: "product-4", name: "Sports Athletic Shoes", price: "₹1,499", variant: "Available in Black, White, Red", imageSrc: "http://img.b2bpic.net/free-photo/active-woman-running-stairs_23-2148381928.jpg", imageAlt: "sports shoes"}, { - id: "product-5", - name: "Comfortable Sandals", - price: "₹599", - variant: "Available in Brown, Tan, Black", - imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991545.jpg?_wi=2", - imageAlt: "sandals", - }, + id: "product-5", name: "Comfortable Sandals", price: "₹599", variant: "Available in Brown, Tan, Black", imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991545.jpg", imageAlt: "sandals"}, { - id: "product-6", - name: "Formal Office Shoes", - price: "₹1,799", - variant: "Available in Black, Brown, Tan", - imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg?_wi=4", - imageAlt: "formal shoes", - }, + id: "product-6", name: "Formal Office Shoes", price: "₹1,799", variant: "Available in Black, Brown, Tan", imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg", imageAlt: "formal shoes"}, ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -113,15 +75,11 @@ export default function ProductsPage() { animationType="entrance-slide" buttons={[ { - text: "Call Us", - href: "tel:+919824144953", - }, + text: "Call Us", href: "tel:+919824144953"}, { - text: "Visit Store", - href: "https://maps.google.com/?q=Shop+no+9+Fortune+World+Cooperative+Housing+Daman", - }, + text: "Visit Store", href: "https://maps.google.com/?q=Shop+no+9+Fortune+World+Cooperative+Housing+Daman"}, ]} - background={{ variant: "noise" }} + background={{ variant: "plain" }} useInvertedBackground={false} /> @@ -130,13 +88,9 @@ export default function ProductsPage() {