export interface HelpContactData {
  title: string;
  description: string;
  animation: {
    animation: string;
    duration: number;
    delay: number;
  };
  button: {
    text: string;
    href: string;
    className: string;
    icon: {
      src: string;
      alt: string;
    };
  };
  image: {
    src: string;
    alt: string;
  };
  videoBox: {
    imageSrc: string;
    imageAlt: string;
    videoButton: {
      href: string;
      className: string;
      videoId: string;
      text: string;
      icon: {
        src: string;
        alt: 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",
  animation: {
    animation: "fade-right",
    duration: 900,
    delay: 300,
  },
  button: {
    text: "Get A Quote",
    href: "#",
    className: "btn-style1 v2",
    icon: {
      src: "/assets/images/icon/arrow.svg",
      alt: "Arrow Icon",
    },
  },
  image: {
    src: "/assets/images/event/video-box.png",
    alt: "Help support image",
  },
  videoBox: {
    imageSrc: "/assets/images/event/video-box.png",
    imageAlt: "",
    videoButton: {
      href: "https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1",
      className: "video-btn video-trigger",
      videoId: "https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1",
      text: "▶",
      icon: {
        src: "/assets/images/event/video-box.png",
        alt: "Video play icon",
      },
    },
  },
};
