fix: Move Customer Reviews above AsSeenIn on product pages

This commit is contained in:
Unchained
2026-03-22 08:39:44 +02:00
parent c723d72508
commit 7febe90b36

View File

@@ -394,6 +394,9 @@ export default function ProductDetail({ product, relatedProducts, locale = "SR"
</div> </div>
</section> </section>
{/* Customer Reviews */}
<ProductReviews locale={locale} productName={localized.name} />
{/* As Featured In - Full Width */} {/* As Featured In - Full Width */}
<AsSeenIn /> <AsSeenIn />
@@ -429,9 +432,6 @@ export default function ProductDetail({ product, relatedProducts, locale = "SR"
{/* Product Benefits */} {/* Product Benefits */}
<ProductBenefits locale={locale} /> <ProductBenefits locale={locale} />
{/* Customer Reviews */}
<ProductReviews locale={locale} productName={localized.name} />
{/* Trust Badges */} {/* Trust Badges */}
<TrustBadges /> <TrustBadges />