export interface CtaSectionItem {
  id: number;
  image: string;
  imageAlt: string;
  title: string;
  description: string;
  buttonLabel: string;
  buttonHref: string;
  buttonIcon: string;
  buttonIconAlt: string;
  aosDelay: number;
}

export interface CtaSectionData {
  items: CtaSectionItem[];
}

export const ctaSectionData: CtaSectionData = {
  items: [
    {
      id: 1,
      image: "/assets/images/event/faq2-1.png",
      imageAlt: "FAQ banner image",
      title: "We're Here to answer your questions",
      description:
        "we've covered all here to help you make informed decisions with confidence",
      buttonLabel: "Get A Quote",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
      buttonIconAlt: "Arrow icon",
      aosDelay: 200,
    },
  ],
};
