michaelrausch-24/src/types.ts
2024-10-16 00:10:58 +13:00

18 lines
290 B
TypeScript

export type Site = {
NAME: string;
EMAIL: string;
NUM_POSTS_ON_HOMEPAGE: number;
NUM_WORKS_ON_HOMEPAGE: number;
NUM_PROJECTS_ON_HOMEPAGE: number;
};
export type Metadata = {
TITLE: string;
DESCRIPTION: string;
};
export type Socials = {
NAME: string;
HREF: string;
}[];