Code for my personal website
at main 33 lines 535 B view raw
1type Site = { 2 NAME: string; 3 EMAIL: string; 4 NUM_POSTS_ON_HOMEPAGE: number; 5 NUM_WORKS_ON_HOMEPAGE: number; 6 NUM_PROJECTS_ON_HOMEPAGE: number; 7}; 8 9type Metadata = { 10 TITLE: string; 11 DESCRIPTION: string; 12}; 13 14type Socials = { 15 NAME: string; 16 HREF: string; 17}[]; 18 19type Commenter = { 20 displayName: string; 21 realName: string; 22}; 23 24type Comment = { 25 id: string; 26 hostId: string; 27 content: string; 28 createdAt: string; 29 updatedAt: string; 30 commenter: Commenter; 31}; 32 33export type { Site, Metadata, Socials, Commenter, Comment };