Add basic necessary SEO tags

This commit is contained in:
thiloho
2024-09-07 16:45:20 +02:00
parent 63dd99bd3d
commit 6a7e64ccaf
4 changed files with 41 additions and 10 deletions

View File

@@ -11,7 +11,8 @@
mainContent,
coverImage,
publicationDate,
footerAdditionalText
footerAdditionalText,
metaDescription
}: {
favicon: string;
title: string;
@@ -21,10 +22,11 @@
coverImage: string;
publicationDate: string;
footerAdditionalText: string;
metaDescription: string;
} = $props();
</script>
<Head {title} {favicon} nestingLevel={1} />
<Head {title} {favicon} nestingLevel={1} {metaDescription} />
<Nav {logoType} {logo} />