From d6523deae5e8cf36b2bf18762cfa479f6a2e3ef7 Mon Sep 17 00:00:00 2001 From: Unchained Date: Sat, 21 Mar 2026 20:13:05 +0200 Subject: [PATCH] feat: Add all homepage sections to product pages Product pages now include: - Product Benefits - Product Reviews - Trust Badges - Before/After Gallery - How It Works - Testimonials - Newsletter --- src/components/product/ProductDetail.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/components/product/ProductDetail.tsx b/src/components/product/ProductDetail.tsx index 9c8fb44..ec2900d 100644 --- a/src/components/product/ProductDetail.tsx +++ b/src/components/product/ProductDetail.tsx @@ -12,6 +12,11 @@ import ProductCard from "@/components/product/ProductCard"; import ProductBenefits from "@/components/product/ProductBenefits"; import ProductReviews from "@/components/product/ProductReviews"; import AsSeenIn from "@/components/home/AsSeenIn"; +import TrustBadges from "@/components/home/TrustBadges"; +import BeforeAfterGallery from "@/components/home/BeforeAfterGallery"; +import HowItWorks from "@/components/home/HowItWorks"; +import TestimonialsSection from "@/components/home/TestimonialsSection"; +import NewsletterSection from "@/components/home/NewsletterSection"; interface ProductDetailProps { product: Product; @@ -423,6 +428,21 @@ export default function ProductDetail({ product, relatedProducts, locale = "SR" {/* Customer Reviews */} + + {/* Trust Badges */} + + + {/* Before/After Gallery */} + + + {/* How It Works */} + + + {/* Testimonials */} + + + {/* Newsletter */} + ); }