From 66d0fbc373ec8c5aa46ee1450e3e4fbee8ac7f60 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 09:24:25 +0000 Subject: [PATCH] Update src/app/product/[id]/page.tsx --- src/app/product/[id]/page.tsx | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 3cfcccb..2a01815 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -25,33 +25,21 @@ const productDetails: Record = { reviews: 128, description: "Timeless silk blouse crafted with premium mulberry silk and finished with delicate mother-of-pearl buttons. Perfect for layering or wearing as a standalone piece.", colors: ["Ivory", "Navy", "Charcoal"], sizes: ["XS", "S", "M", "L", "XL"], - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-dressed-summer-outfit-out-city_1303-15911.jpg?_wi=1", longDescription: "Our signature silk blouse exemplifies timeless elegance. Hand-selected mulberry silk provides a luxurious drape and natural sheen. The blouse features: - -• Premium mulberry silk (100%) -• Mother-of-pearl buttons -• French seams for durability -• Machine washable on delicate cycle -• Made in Italy - -Style with tailored trousers for the office, or layer under a blazer for evening elegance.", care: [ - "Hand wash or dry clean recommended", "Lay flat to dry", "Iron on low heat if needed", "Store in cool, dry place"], - shipping: "Free shipping on orders over $500. Delivery in 5-7 business days.", return: "30-day return policy for unworn pieces in original condition."}, + imageSrc: "http://img.b2bpic.net/free-photo/young-woman-dressed-summer-outfit-out-city_1303-15911.jpg?_wi=1", longDescription: "Our signature silk blouse exemplifies timeless elegance. Hand-selected mulberry silk provides a luxurious drape and natural sheen. The blouse features:\n\n• Premium mulberry silk (100%)\n• Mother-of-pearl buttons\n• French seams for durability\n• Machine washable on delicate cycle\n• Made in Italy\n\nStyle with tailored trousers for the office, or layer under a blazer for evening elegance.", care: [ + "Hand wash or dry clean recommended", "Lay flat to dry", "Iron on low heat if needed", "Store in cool, dry place" + ], + shipping: "Free shipping on orders over $500. Delivery in 5-7 business days.", return: "30-day return policy for unworn pieces in original condition." + }, "2": { id: "2", name: "Tailored Wool Trousers", price: "$495", rating: 4.8, reviews: 95, description: "Precision-tailored trousers in premium wool with a perfect fit. The ideal foundation for any professional wardrobe.", colors: ["Black", "Camel", "Graphite"], sizes: ["XS", "S", "M", "L", "XL"], - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-office_1303-31722.jpg?_wi=1", longDescription: "Crafted from the finest Italian wool, these tailored trousers offer impeccable fit and timeless style. Features: - -• 100% pure new wool -• Flat front with zipper fly -• Side pockets and back patch pockets -• Hemmed to fit -• Professional tailoring - -The perfect investment piece for your wardrobe.", care: [ - "Dry clean recommended", "Professional pressing", "Spot clean if needed", "Store on wooden hanger"], - shipping: "Free shipping on orders over $500. Delivery in 5-7 business days.", return: "30-day return policy for unworn pieces in original condition."}, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-office_1303-31722.jpg?_wi=1", longDescription: "Crafted from the finest Italian wool, these tailored trousers offer impeccable fit and timeless style. Features:\n\n• 100% pure new wool\n• Flat front with zipper fly\n• Side pockets and back patch pockets\n• Hemmed to fit\n• Professional tailoring\n\nThe perfect investment piece for your wardrobe.", care: [ + "Dry clean recommended", "Professional pressing", "Spot clean if needed", "Store on wooden hanger" + ], + shipping: "Free shipping on orders over $500. Delivery in 5-7 business days.", return: "30-day return policy for unworn pieces in original condition." + }, }; export default function ProductPage({ params }: ProductDetailsProps) { @@ -112,7 +100,8 @@ export default function ProductPage({ params }: ProductDetailsProps) { { name: "Contact", id: "#" }, ]} button={{ - text: "Back to Shop", href: "/shop"}} + text: "Back to Shop", href: "/shop" + }} animateOnLoad={true} /> -- 2.49.1