Skip to content

Commit

Permalink
Merge pull request #14 from calimania/bug/link
Browse files Browse the repository at this point in the history
Fixed link SEO in product page
  • Loading branch information
dvidsilva authored Dec 9, 2024
2 parents e7cb6b0 + 14cb5a0 commit 1004c12
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/products/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ const htmlDescription = marked.parse(product?.data?.Description);
---

<Layout
title={`Product | ${product?.data?.title}`}
title={`Product | ${product?.data?.Name}`}
meta={{
title: `Markkët Product | ${product?.data?.title}`,
title: `Markkët Product | ${product?.data?.Name}`,
image: product?.data?.SEO?.socialImage?.url || "",
description:
product?.data?.SEO?.metaDescription || store?.data?.Description,
}}
Expand Down

0 comments on commit 1004c12

Please sign in to comment.