This commit is contained in:
2026-01-19 19:31:53 +01:00
parent 6797303628
commit 4abcc3fdf5
9 changed files with 1 additions and 86 deletions

View File

@@ -46,20 +46,11 @@ export async function generateMetadata({ params }: ProductPageProps): Promise<Me
title: `${categoryTitle} | KLZ Cables`,
description: categoryDesc,
url: `https://klz-cables.com/${locale}/products/${productSlug}`,
images: [
{
url: '/uploads/2025/02/og-2.webp',
width: 1200,
height: 630,
alt: categoryTitle,
},
],
},
twitter: {
card: 'summary_large_image',
title: `${categoryTitle} | KLZ Cables`,
description: categoryDesc,
images: ['/uploads/2025/02/og-2.webp'],
},
};
}
@@ -67,8 +58,6 @@ export async function generateMetadata({ params }: ProductPageProps): Promise<Me
const product = await getProductBySlug(productSlug, locale);
if (!product) return {};
const imageUrl = product.frontmatter.images?.[0] || '/uploads/2025/02/og-2.webp';
return {
title: product.frontmatter.title,
description: product.frontmatter.description,
@@ -85,20 +74,11 @@ export async function generateMetadata({ params }: ProductPageProps): Promise<Me
description: product.frontmatter.description,
type: 'website',
url: `https://klz-cables.com/${locale}/products/${slug.join('/')}`,
images: [
{
url: imageUrl,
width: 1200,
height: 630,
alt: product.frontmatter.title,
},
],
},
twitter: {
card: 'summary_large_image',
title: `${product.frontmatter.title} | KLZ Cables`,
description: product.frontmatter.description,
images: [imageUrl],
},
};
}