export type BlogPreviewType = 'announcements' | 'release' | 'vulnerability'; export interface BlogPost { title: string; author: string; date: Date; categories: Array; slug: string; } export interface BlogData { posts: Array; categories: Array; } export interface BlogPagination { next: number | null; prev: number | null; pages: number; total: number; } export interface BlogPostsRSC { posts: Array; pagination: BlogPagination; }