micro/src/types.ts
2026-02-20 04:57:48 +05:30

17 lines
281 B
TypeScript

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