export type TNews = { title: string description: string type: 'hero' | 'grid' items: Pick[] } export type TNewsDetail = { title: string content: string featured: string author: string date: Date slug: string tag?: Array }