diff --git a/src/app/product-detail/page.tsx b/src/app/product-detail/page.tsx new file mode 100644 index 0000000..b2ec0a6 --- /dev/null +++ b/src/app/product-detail/page.tsx @@ -0,0 +1,126 @@ +"use client"; + +import { ThemeProvider } from "next-themes"; +import { Sparkles, ShoppingCart, Heart, Share2, Scale } from "lucide-react"; // Example icons +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; + +export default function ProductDetailPage() { + const product = { + name: "Minimalist Wooden Desk", price: "$299.00", discount: "33% off", originalPrice: "$450.00", stockStatus: "In Stock", deliveryEstimate: "2-3 business days", images: [ + { src: "https://r2.webild.com/ecommerce/ecommerce-product-mockup-1.webp", alt: "Product image 1" }, + { src: "https://r2.webild.com/ecommerce/ecommerce-product-mockup-2.webp", alt: "Product image 2" }, + { src: "https://r2.webild.com/ecommerce/ecommerce-product-mockup-3.webp", alt: "Product image 3" }, + { src: "https://r2.webild.com/ecommerce/ecommerce-product-mockup-4.webp", alt: "Product image 4" } + ], + description: "Experience the perfect blend of functionality and Scandinavian elegance with our Minimalist Wooden Desk. Crafted from sustainably sourced oak, this desk offers a spacious work surface and a clean, uncluttered design that enhances any modern interior. Its robust construction ensures durability, while the natural wood grain adds a touch of organic warmth to your workspace.", specifications: [ + { label: "Dimensions", value: "L 120cm x W 60cm x H 75cm" }, + { label: "Material", value: "Solid Oak, Veneer" }, + { label: "Weight", value: "25 kg" }, + { label: "Color", value: "Natural Oak" } + ], + materials: "100% FSC-certified solid oak and oak veneer. Finished with a non-toxic, water-based lacquer.", sustainability: "Our desk is crafted from wood sourced from responsibly managed forests, ensuring environmental protection and social benefits. We prioritize minimal waste production and use eco-friendly packaging materials.", shippingReturns: { + shipping: "Free standard shipping on all orders over $100. Expedited shipping options available at checkout. Estimated delivery: 2-3 business days.", returns: "30-day hassle-free returns. Product must be in original condition and packaging. See full policy for details." + } + }; + + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Product', id: '/product-detail' } + ]; + + return ( + + +
+
+
+ {/* Product Gallery & Image Zoom */} +
+
+ {product.images[0].alt} +
+
+ {product.images.map((image, index) => ( + {image.alt} + ))} +
+
+ + {/* Product Info & Actions */} +
+

{product.name}

+
+ {product.price} + {product.originalPrice} + {product.discount} +
+
+ {product.stockStatus} +
+

Delivery: {product.deliveryEstimate}

+ + {/* Action Buttons */} +
+ + + + + +
+ + {/* Product Details Sections */} +
+
+

Description

+

{product.description}

+
+
+

Specifications

+
    + {product.specifications.map((spec, index) => ( +
  • + {spec.label}: {spec.value} +
  • + ))} +
+
+
+

Materials

+

{product.materials}

+
+
+

Sustainability

+

{product.sustainability}

+
+
+

Shipping & Returns

+

Shipping: {product.shippingReturns.shipping}

+

Returns: {product.shippingReturns.returns}

+
+
+
+
+
+
+
+ ); +} \ No newline at end of file