fix: Remove non-scrolling testimonials and newsletter from product pages

This commit is contained in:
Unchained
2026-03-22 08:54:29 +02:00
parent 0827147745
commit 7618cfa6df

View File

@@ -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 */}
<HowItWorks />
{/* Testimonials */}
<TestimonialsSection />
{/* Newsletter */}
<NewsletterSection />
</>
);
}