src/data/siteMeta.ts 182 B raw
1
type SiteMeta = {
2
	title: string;
3
	description?: string;
4
	ogImage?: string | undefined;
5
	articleDate?: string | undefined;
6
	atUri?: string | undefined;
7
};
8
9
export type { SiteMeta };