export interface HelpContactData {
  title: string;
  description: string;
  cta: {
    label: string;
    href: string;
    iconSrc: string;
  };
  video: {
    thumbnailSrc: string;
    videoUrl: string;
    triggerIcon: string;
  };
}

export const helpContactData: HelpContactData = {
  title: "Have Any Questions on your minds!",
  description:
    "We know choosing the right software can raise a lot of questions. That’s why we’ve put together answers to the most common ones",
  cta: {
    label: "Get A Quote",
    href: "#",
    iconSrc: "/assets/images/icon/arrow.svg",
  },
  video: {
    thumbnailSrc: "/assets/images/event/video-box.png",
    videoUrl: "https://youtu.be/3DMHeAAcTEQ?si=bzlRA75kUO04KmhG",
    triggerIcon: "▶",
  },
};
