diff options
Diffstat (limited to 'apps/website/src/components/shared/BaseHead.astro')
-rw-r--r-- | apps/website/src/components/shared/BaseHead.astro | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/apps/website/src/components/shared/BaseHead.astro b/apps/website/src/components/shared/BaseHead.astro index ddb94e3..bfe8f78 100644 --- a/apps/website/src/components/shared/BaseHead.astro +++ b/apps/website/src/components/shared/BaseHead.astro @@ -1,14 +1,11 @@ --- -import smartypants from 'smartypants'; -import SEO from './SEO.astro'; - export type Props = { - siteName: string - title?: string - description: string - image: { src: string, alt: string } - canonicalURL?: URL | null - pageType?: 'website' | 'article' + siteName: string; + title?: string; + description: string; + image: { src: string; alt: string }; + canonicalURL?: URL | null; + pageType?: 'website' | 'article'; }; const twitterHandle = 'polyfrost'; |