diff options
author | Pauline <git@ethanlibs.co> | 2024-01-10 19:58:58 -0500 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2024-01-10 19:58:58 -0500 |
commit | 8be3434d32d7ed9046000377f7f9e59ef2a971b3 (patch) | |
tree | a17c19137054e4768e57799cd3932dd92e66a69b /apps/website/src/components/shared/BaseHead.astro | |
parent | 75676183d008a07070db8fdd52af3fdf0bbfb8a7 (diff) | |
download | Nexus-8be3434d32d7ed9046000377f7f9e59ef2a971b3.tar.gz Nexus-8be3434d32d7ed9046000377f7f9e59ef2a971b3.tar.bz2 Nexus-8be3434d32d7ed9046000377f7f9e59ef2a971b3.zip |
super unfinished stuff but i was getting yelled at by wybest
Diffstat (limited to 'apps/website/src/components/shared/BaseHead.astro')
-rw-r--r-- | apps/website/src/components/shared/BaseHead.astro | 15 |
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'; +--- |