export interface BenefitImage {
  light: string;
  dark: string;
  alt: string;
}

export interface BenefitItem {
  image: BenefitImage;
  subTitle: string;
  title: string;
  description: string;
  cta: {
    label: string;
    href: string;
    icon: string;
    iconAlt: string;
  };
  delay: number;
}

export interface BenefitSectionData {
  subTitle: string;
  title: string;
  benefits: BenefitItem[];
}

export const benefitSectionData: BenefitSectionData = {
  subTitle: "How to Benefits",
  title: "Take control of your finances and achieve your goals effortlessly.",
  benefits: [
    {
      image: {
        light: "/assets/images/event/bene1-1.png",
        dark: "/assets/images/event/bene1-1-dark.png",
        alt: "Automated payment scheduling illustration",
      },
      subTitle: "Automate your payments",
      title: "Schedule payments and grow your finances automatically.",
      description:
        "Automation allows you to schedule transfers and manage your finances effortlessly.",
      cta: {
        label: "Learn more",
        href: "#",
        icon: "/assets/images/icon/arrow1-1.svg",
        iconAlt: "Arrow icon",
      },
      delay: 300,
    },
    {
      image: {
        light: "/assets/images/event/bene1-2.png",
        dark: "/assets/images/event/bene1-2-dark.png",
        alt: "Financial growth and savings illustration",
      },
      subTitle: "Hassle-free ways to grow",
      title: "Financial growth at your fingertips, stress-free and simple.",
      description:
        "Experience effortless savings an take control of your financial future with ease.",
      cta: {
        label: "Learn more",
        href: "#",
        icon: "/assets/images/icon/arrow1-1.svg",
        iconAlt: "Arrow icon",
      },
      delay: 400,
    },
    {
      image: {
        light: "/assets/images/event/bene1-3.png",
        dark: "/assets/images/event/bene1-3-dark.png",
        alt: "Smart financial planning illustration",
      },
      subTitle: "Effortless Financial Growth",
      title: "Take Control, Save Smarter, and Achieve Financial Freedom",
      description:
        "Take control of your financial future with effortless growth designed for simplicity.",
      cta: {
        label: "Learn more",
        href: "#",
        icon: "/assets/images/icon/arrow1-1.svg",
        iconAlt: "Arrow icon",
      },
      delay: 300,
    },
  ],
};
