export type BlogPostDataEntry = { title: string; content: string; description: string; authors: BlogAuthor[]; date: string; cover_image: string | null; tags: string[]; reposts: string[]; updated?: string; pinned?: boolean; filePath: string; slug: string; }; export type BlogAuthor = { name: string; image: string; twitter: string; github: string; };