export interface BreadcrumbItem {
  id: number;
  label: string;
  href?: string;
}

export interface BlogHeroContent {
  title: string;
  description: string;
}

export interface BlogHeroData {
  breadcrumbs: BreadcrumbItem[];
  content: BlogHeroContent[];
}

export const blogHeroData: BlogHeroData = {
  breadcrumbs: [
    { id: 1, label: "Home", href: "/" },
    { id: 2, label: "Blog", href: "/blog" },
    { id: 3, label: "Blog Details" },
  ],
  content: [
    {
      title: "The Power of User-Centered Design in Web App Development",
      description:
        "Stay informed with the latest trends, insights, and innovations in the digital world through our News & Blog section. From expert tips on design and development to updates on industry trends and success stories from our projects",
    },
  ],
};
