export type ICategory = {
  map: any
  id: number
  title: string
  subtitle: string
  slug: string
  url: string
  description: string
  image: string
  type: string
  status: string
  items: []
}