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

export interface FeatureSection2Data {
  subTitle: string;
  title: string;
  description: string;
  ctaButton: {
    label: string;
    href: string;
  };
  image: FeatureImage2;
}

export const featureSection2Data: FeatureSection2Data = {
  subTitle: "Budgeting made simple",
  title: "Build wealth calmly in smart automation.",
  description:
    "Enjoy true peace of mind as your funds grow effortlessly through smart, automated financial tools. Our platform simplifies money management by handling savings, transfers, and insights.",
  ctaButton: {
    label: "Get Started",
    href: "#",
  },
  image: {
    light: "/assets/images/feature/feature2-1.png",
    dark: "/assets/images/feature/feature2-1-dark.png",
    alt: "Smart budgeting and financial automation dashboard",
  },
};
