export interface Breadcrumb {
  label: string;
  url?: string;
}

export interface BlogDetailHeroData {
  title: string;
  breadcrumbs: Breadcrumb[];
}

export const blogDetailHeroData: BlogDetailHeroData = {
  title: "The Ultimate Guide to Choosing the Right CRM",
  breadcrumbs: [
    { label: "Home", url: "/" },
    { label: "The Ultimate Guide to Choosing the Right CRM" },
  ],
};
