diff --git a/src/components/SEOMeta.astro b/src/components/SEOMeta.astro new file mode 100644 index 00000000..5a7e882c --- /dev/null +++ b/src/components/SEOMeta.astro @@ -0,0 +1,37 @@ +--- +interface Props { + title: string + description: string | undefined + favicon: string | undefined + faviconMimeType: string | undefined + keywords: string | undefined + author: string | undefined + robots: string | undefined +} + +const { + title, + description, + favicon, + faviconMimeType, + keywords, + author, + robots, +} = Astro.props +--- + + + + + + + +{title} + +{description && } + + +{keywords && } + +{robots && } +