aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/components/shared/BaseHead.astro
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website/src/components/shared/BaseHead.astro')
-rw-r--r--apps/website/src/components/shared/BaseHead.astro15
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/website/src/components/shared/BaseHead.astro b/apps/website/src/components/shared/BaseHead.astro
new file mode 100644
index 0000000..ddb94e3
--- /dev/null
+++ b/apps/website/src/components/shared/BaseHead.astro
@@ -0,0 +1,15 @@
+---
+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'
+};
+
+const twitterHandle = 'polyfrost';
+---