export interface BaseContent {
     id: number;
      website_id: number;
      page_id: number;
      sequence: number;
      title: string;
      shortDescription: string;
      longDescription: string;
      image: string;
      tumbImage: string | null;
      bannerImage: string | null;
      file: string | null;
      slug: string;
      metaTitle: string;
      metaKeyword: string;
      metaDescription: string;
      status: "active" | "inactive";
      createdAt: string;
      updatedAt: string;
      subsections: Subsection[];
}

interface Subsection {
  id: number;
  title: string;
  description: string;
  image: string;
}