export interface BlogMeta {
  category: string;
  categoryLink: string;
  author: string;
  date: string;
}

export interface InsightsHeroData {
  subtitle: string;
  title: string;
  image: string;
  imageAlt: string;
  imageLink: string;
  meta: BlogMeta;
  articleTitle: string;
  articleLink: string;
  description: string;
  buttonText: string;
  buttonLink: string;
  buttonIcon: string;
  buttonIconAlt: string;
}

export const insightsHeroData: InsightsHeroData = {
  subtitle: "latest Insights",
  title: "Insights for smarter decisions",
  image: "/assets/images/blog/blog1-1.png",
  imageAlt: "SaaS Platform Workflow Blog Image",
  imageLink: "#",
  meta: {
    category: "Analytics",
    categoryLink: "#",
    author: "Admin",
    date: "20 August, 2025"
  },
  articleTitle: "SaaS Platform Can Streamline Your Workflow in Minutes",
  articleLink: "#",
  description: "Our SaaS platform is designed to simplify complex workflows, boost productivity, and help your business scale faster than ever.",
  buttonText: "Read More",
  buttonLink: "#",
  buttonIcon: "/assets/images/icon/arrow.svg",
  buttonIconAlt: "Arrow icon for Read More button"
};
