export interface DownloadButton {
  href: string;
  title: string;
  lightImage: string;
  lightAlt: string;
  darkImage: string;
  darkAlt: string;
}

export interface DownloadBannerData {
  title: string;
  description: string;
  image: {
    src: string;
    alt: string;
  };
  buttons: DownloadButton[];
}

export const downloadData: DownloadBannerData = {
  title: "Ready for Smarter Conversations? Get the chatbot app!",
  description: "Take the power of AI wherever you go. With our chatbot app, can enjoy real-time conversations, instant.",
  image: {
    src: "/assets/images/event/phone1-1.png",
    alt: "Illustration of mobile phone with chatbot app"
  },
  buttons: [
    {
      href: "#",
      title: "",
      lightImage: "/assets/images/event/downlode1-1.webp",
      lightAlt: "Download button for app store",
      darkImage: "/assets/images/event/downlode1-1-dark.webp",
      darkAlt: "Download button for app store dark mode"
    },
    {
      href: "#",
      title: "",
      lightImage: "/assets/images/event/downlode1-2.png",
      lightAlt: "Download button for Google Play store",
      darkImage: "/assets/images/event/downlode1-2-dark.webp",
      darkAlt: "Download button for Google Play store dark mode"
    }
  ]
};
