export interface BlogPost {
  id: string;
  image: string;
  imageAlt: string;
  author: string;
  date: string;
  title: string;
  link: string;
  delay: number; // for aos animation delay
}

export const blogPostsData: BlogPost[] = [
  {
    id: "post-1",
    image: "assets/images/blog/blog1-1.png",
    imageAlt: "Predictive analytics competitors SaaS blog image",
    author: "Admin",
    date: "September 10, 2025",
    title: "How Predictive Analytics Helps You Stay Ahead of Competitors",
    link: "/blog-detail",
    delay: 300,
  },
  {
    id: "post-2",
    image: "assets/images/blog/blog1-2.png",
    imageAlt: "AI trends and future technology blog image",
    author: "Admin",
    date: "September 7, 2025",
    title: "Trends Shaping the Future of Artificial Intelligence in 2025",
    link: "/blog-detail",
    delay: 500,
  },
  {
    id: "post-3",
    image: "assets/images/blog/blog1-3.png",
    imageAlt: "Conversational AI business applications blog image",
    author: "Admin",
    date: "July 20, 2025",
    title: "Understanding Conversational AI and Its Business Applications",
    link: "/blog-detail",
    delay: 700,
  },
  {
    id: "post-4",
    image: "assets/images/blog/blog1-4.png",
    imageAlt: "Predictive analytics business growth blog image",
    author: "Admin",
    date: "September 10, 2025",
    title: "How Predictive Analytics Helps You Stay Ahead of Competitors",
    link: "/blog-detail",
    delay: 300,
  },
  {
    id: "post-5",
    image: "assets/images/blog/blog1-5.png",
    imageAlt: "Artificial intelligence trends SaaS blog image",
    author: "Admin",
    date: "September 7, 2025",
    title: "Trends Shaping the Future of Artificial Intelligence in 2025",
    link: "/blog-detail",
    delay: 500,
  },
  {
    id: "post-6",
    image: "assets/images/blog/blog1-6.png",
    imageAlt: "Conversational AI enterprise solutions blog image",
    author: "Admin",
    date: "July 20, 2025",
    title: "Understanding Conversational AI and Its Business Applications",
    link: "/blog-detail",
    delay: 700,
  },
];
