export interface BlogHeroData {
  title: string;
  breadcrumbs: {
    label: string;
    url?: string;
  }[];
}

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