export interface Post {
  slug: string
  title: string
  excerpt: string
  date: string
  cover_image?: string | null
  author_name?: string | null
  body?: string | null
  meta_title?: string | null
  meta_description?: string | null
}
