// Blog Response Interface
export interface BlogResponse {
  meta: {
    status: number;
    message: string;
  };
  data: BlogData;
  statusCode: number;
}

// Blog Data Interface
export interface BlogData {
  blogId: string;
  blogImage: {
    imageId: string;
    imageUrl: string;
  }
  createdAt: string;
  description: string;
  readDuration: number;
  shortDescription: string;
  slug: string;
  status: number;
  title: string;
  updatedAt: string;
  ogTitle: string;
  ogDescription: string;
  ogType: string;
  ogImage: {
    imageId: string;
    imageUrl: string;
  }
  metaTitle: string;
  metaDescription: string;
  metaKeyWords: string[];
}
