mirror of
https://github.com/michaelrausch/michaelrausch-24.git
synced 2025-01-31 05:29:56 +00:00
18 lines
290 B
TypeScript
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;
|
||
|
}[];
|