export type BreadcrumbItem = {
  label: string;
  path?: string;
};

export type CategoryItem = {
  id: number;
  label: string;
  path: string;
};

export type LatestNewsItem = {
  id: number;
  image: string;
  imageAlt: string;
  date: string;
  title: string;
  path: string;
};

export type TagItem = {
  id: number;
  label: string;
  path: string;
};

export type BlogPostItem = {
  id: number;
  image: string;
  imageAlt: string;
  author: string;
  date: string;
  title: string;
  path: string;
  aosDelay: string;
};

export const blogBreadcrumbs: BreadcrumbItem[] = [
  { label: "Home", path: "/" },
  { label: "Blog Standard" },
];

export const blogCategories: CategoryItem[] = [
  { id: 1, label: "AI & Technology", path: "#" },
  { id: 2, label: "Dashboard Design", path: "#" },
  { id: 3, label: "Mobile Apps Development", path: "#" },
  { id: 4, label: "Product Design", path: "#" },
  { id: 5, label: "SaaS Landing Template", path: "#" },
  { id: 6, label: "UX/UI Design", path: "#" },
];

export const latestNewsItems: LatestNewsItem[] = [
  {
    id: 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",
    path: "/blog-details",
  },
  {
    id: 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",
    path: "/blog-details",
  },
  {
    id: 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",
    path: "/blog-details",
  },
];

export const blogTags: TagItem[] = [
  { id: 1, label: "Dashboard", path: "#" },
  { id: 2, label: "Design", path: "#" },
  { id: 3, label: "Mobile", path: "#" },
  { id: 4, label: "Saas", path: "#" },
  { id: 5, label: "Software", path: "#" },
  { id: 6, label: "Technology", path: "#" },
];

export const blogPosts: BlogPostItem[] = [
  {
    id: 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",
    path: "/blog-details",
    aosDelay: "300",
  },
  {
    id: 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",
    path: "/blog-details",
    aosDelay: "500",
  },
  {
    id: 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",
    path: "/blog-details",
    aosDelay: "700",
  },
  {
    id: 4,
    image: "/assets/images/blog/blog1-4.webp",
    imageAlt: "Predictive analytics business growth blog image",
    author: "Admin",
    date: "September 10, 2025",
    title: "How Predictive Analytics Helps You Stay Ahead of Competitors",
    path: "/blog-details",
    aosDelay: "300",
  },
  {
    id: 5,
    image: "/assets/images/blog/blog1-5.webp",
    imageAlt: "Artificial intelligence trends SaaS blog image",
    author: "Admin",
    date: "September 7, 2025",
    title: "Trends Shaping the Future of Artificial Intelligence in 2025",
    path: "/blog-details",
    aosDelay: "500",
  },
  {
    id: 6,
    image: "/assets/images/blog/blog1-6.webp",
    imageAlt: "Conversational AI enterprise solutions blog image",
    author: "Admin",
    date: "July 20, 2025",
    title: "Understanding Conversational AI and Its Business Applications",
    path: "/blog-details",
    aosDelay: "700",
  },
];
