export interface RecentPost {
  id: string;
  image: string;
  imageAlt: string;
  date: string;
  title: string;
  url: string;
}

export const blogRecentPostsData: RecentPost[] = [
  {
    id: "recent-1",
    image: "assets/images/blog/blog2-2.webp",
    imageAlt: "Predictive analytics SaaS blog thumbnail",
    date: "September 10, 2025",
    title: "How Predictive Analytics Helps You Stay Ahead of Competitors",
    url: "/blog-detail",
  },
  {
    id: "recent-2",
    image: "assets/images/blog/blog2-3.webp",
    imageAlt: "AI trends 2025 blog thumbnail image",
    date: "September 7, 2025",
    title: "Trends Shaping the Future of Artificial Intelligence in 2025",
    url: "/blog-detail",
  },
  {
    id: "recent-3",
    image: "assets/images/blog/blog2-4.webp",
    imageAlt: "Conversational AI business applications blog thumbnail",
    date: "September 6, 2025",
    title: "Understanding Conversational AI and Its Business Applications",
    url: "/blog-detail",
  },
];
