export interface BlogPost {
  image: string;
  imageAlt: string;
  author: string;
  authorHref: string;
  date: string;
  titleTag: "h2" | "h3";
  title: string;
  titleHref: string;
  description: string;
  buttonText: string;
  buttonHref: string;
  aosDelay: number;
}

export interface PaginationItem {
  label: string;
  href: string;
  ariaLabel?: string;
  icon?: string;
  iconAlt?: string;
}

export interface BlogSectionData {
  posts: BlogPost[];
  pagination: PaginationItem[];
}

export const blogSectionData: BlogSectionData = {
  posts: [
    {
      image: "/assets/images/blog/blog1-1.png",
      imageAlt: "Blog image 1",
      author: "Admin",
      authorHref: "#",
      date: "January 11, 2026",
      titleTag: "h2",
      title: "Top Fintech Trends Shaping the Future of Digital Finance",
      titleHref: "#",
      description:
        "Fintech solutions are designed to deliver maximum value through a combination of security.",
      buttonText: "Read more",
      buttonHref: "#",
      aosDelay: 200,
    },
    {
      image: "/assets/images/blog/blog1-2.png",
      imageAlt: "Blog image 2",
      author: "Admin",
      authorHref: "#",
      date: "December 12, 2025",
      titleTag: "h3",
      title: "Fintech Software Strategies for Faster Financial Decision Making",
      titleHref: "#",
      description:
        "Financial planning aligns strategy, resources, and risk to sustain growth and success.",
      buttonText: "Read more",
      buttonHref: "#",
      aosDelay: 300,
    },
    {
      image: "/assets/images/blog/blog1-3.png",
      imageAlt: "Blog image 3",
      author: "Admin",
      authorHref: "#",
      date: "December 2, 2025",
      titleTag: "h3",
      title: "Choosing the Right Fintech Software for Scalable Businesses",
      titleHref: "#",
      description:
        "Tech convergence and ethical values drive growth, loyalty, and smarter decision-making.",
      buttonText: "Read more",
      buttonHref: "#",
      aosDelay: 400,
    },
    {
      image: "/assets/images/blog/blog1-4.png",
      imageAlt: "Blog image 4",
      author: "Admin",
      authorHref: "#",
      date: "November 20, 2025",
      titleTag: "h3",
      title: "Top Fintech Software Trends Shaping the Future of Finance",
      titleHref: "#",
      description:
        "Risk management helps businesses anticipate challenges and maintain long-term stability.",
      buttonText: "Read more",
      buttonHref: "#",
      aosDelay: 200,
    },
    {
      image: "/assets/images/blog/blog1-5.png",
      imageAlt: "Blog image 5",
      author: "Admin",
      authorHref: "#",
      date: "July 13, 2025",
      titleTag: "h3",
      title: "Why Fintech Software Matters for Digital Banking Growth",
      titleHref: "#",
      description:
        "Data-driven retention strategies help businesses keep customers engaged and coming back.",
      buttonText: "Read more",
      buttonHref: "#",
      aosDelay: 300,
    },
    {
      image: "/assets/images/blog/blog1-6.png",
      imageAlt: "Blog image 6",
      author: "Admin",
      authorHref: "#",
      date: "25 December 2025",
      titleTag: "h3",
      title: "Sustainability Consulting Building a Future-Ready Business",
      titleHref: "#",
      description:
        "Sustainable business models drive resilience and competitive advantage in evolving markets.",
      buttonText: "Read more",
      buttonHref: "#",
      aosDelay: 400,
    },
  ],
  pagination: [
    {
      label: "",
      href: "#",
      ariaLabel: "Previous",
      icon: "/assets/images/icon/prev.svg",
      iconAlt: "Previous arrow",
    },
    { label: "1", href: "#" },
    { label: "2", href: "#" },
    { label: "3", href: "#" },
    {
      label: "",
      href: "#",
      ariaLabel: "Next",
      icon: "/assets/images/icon/next.svg",
      iconAlt: "Next arrow",
    },
  ],
};
