Amp-Thread-ID: https://ampcode.com/threads/T-019c7839-0936-729b-aa87-92b35d3d68fe Co-authored-by: Amp <amp@ampcode.com>
17 lines
281 B
TypeScript
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;
|
|
}[];
|