export interface CTAData {
  subTitle: string;
  title: string;
  description: string;
  cta: {
    label: string;
    href: string;
    iconSrc: string;
  };
  imageSrc: string;
  imageAlt: string;
}

export const ctaSectionData: CTAData = {
  subTitle: "Easy to Get Sasico",
  title: "One Platform. Every Customer.",
  description:
    "Ready to Take Your Business to the Next Level? Start Your CRM Journey Now,It’s Time to Work Smarter, Not Harder",
  cta: {
    label: "Get Started With Sasico",
    href: "#",
    iconSrc: "/assets/images/icon/arrow.svg",
  },
  imageSrc: "/assets/images/event/platform1-1.png",
  imageAlt: "Sasico Platform Illustration",
};
