export interface FeatureSection3Data {
  image: {
    src: string;
    alt: string;
  };
  subTitle: string;
  title: string;
  description: string;
  ctaButton: {
    label: string;
    href: string;
  };
}

export const featureSection3Data: FeatureSection3Data = {
  image: {
    src: "/assets/images/feature/feature3-1.png",
    alt: "Smart budgeting and automated financial management illustration",
  },
  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: "#",
  },
};
