aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/components/shared/BaseHead.astro
blob: bfe8f7860fb989f990f2d7470c40a233abfe70d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
export type Props = {
	siteName: string;
	title?: string;
	description: string;
	image: { src: string; alt: string };
	canonicalURL?: URL | null;
	pageType?: 'website' | 'article';
};

const twitterHandle = 'polyfrost';
---