blog.z0x.ca/src/types.ts
2025-01-14 22:41:22 -05:00

7 lines
106 B
TypeScript

export type Site = {
TITLE: string;
DESCRIPTION: string;
};
export type Metadata = {
TITLE: string;
};