From 7618cfa6df87864ee831ed262c6fcd4f1eafde1a Mon Sep 17 00:00:00 2001 From: Unchained Date: Sun, 22 Mar 2026 08:54:29 +0200 Subject: [PATCH] fix: Remove non-scrolling testimonials and newsletter from product pages --- src/components/product/ProductDetail.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/components/product/ProductDetail.tsx b/src/components/product/ProductDetail.tsx index a37ad1e..e9d1dc7 100644 --- a/src/components/product/ProductDetail.tsx +++ b/src/components/product/ProductDetail.tsx @@ -15,8 +15,6 @@ 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; @@ -438,11 +436,6 @@ export default function ProductDetail({ product, relatedProducts, locale = "SR" {/* How It Works */} - {/* Testimonials */} - - - {/* Newsletter */} - ); }