Skip to content

Commit

Permalink
fix meta image address
Browse files Browse the repository at this point in the history
  • Loading branch information
elijames-codecov committed Aug 1, 2024
1 parent 999d20c commit 6a70adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const { title, seo } = Astro.props;
const seoTitle = `${title} | Fair.io`;
const seoDescription = seo?.description ? seo.description : '';
const seoMetaImage = seo?.metaImage ? seo.metaImage : 'https://new.fair.io/images/metaImage.png';
const seoMetaImage = seo?.metaImage ? seo.metaImage : 'https://new.fair.io/images/metaimage.png';
const seoSlug = seo?.slug ? seo.slug : '';
const canonicalURL = `https://fair.io/${seoSlug}`;
Expand Down

0 comments on commit 6a70adb

Please sign in to comment.