export type IPage = {
    id: number
    title: string
    slug: string
    content: string
    category: string
    status: string
}