diff --git a/app/[locale]/products/[...slug]/page.tsx b/app/[locale]/products/[...slug]/page.tsx index 09a91506..dd8be8e9 100644 --- a/app/[locale]/products/[...slug]/page.tsx +++ b/app/[locale]/products/[...slug]/page.tsx @@ -402,7 +402,13 @@ export default async function ProductPage({ params }: ProductPageProps) { {/* Description Area Next to Sidebar */}
- + {descriptionChildren.length > 0 ? ( + + ) : product.frontmatter.description ? ( +

+ {product.frontmatter.description} +

+ ) : null}