export interface ChatFeature {
  icon: string;
  text: string;
}

export interface ChatSectionData {
  subtitle: string;
  title: string;
  description: string;
  features: ChatFeature[];
  image: {
    src: string;
    alt: string;
  };
  cta: {
    text: string;
    icon: string;
    iconAlt: string;
  };
}

export const chatData: ChatSectionData = {
  subtitle: "Live Voice Chat",
  title: "Talk to us live anytime, anywhere needs.",
  description: "Need help or have a question? Our live chat feature lets connect with us instantly-anytime, anywhere. Whether you're on a desktop tablet, or mobile device.",
  features: [
    {
      icon: "/assets/images/icon/check1-1.svg",
      text: "Real-Time Messaging"
    },
    {
      icon: "/assets/images/icon/check1-1.svg",
      text: "Typing Indicators & Read Receipts"
    },
    {
      icon: "/assets/images/icon/check1-1.svg",
      text: "File & Media Sharing"
    },
    {
      icon: "/assets/images/icon/check1-1.svg",
      text: "Secure & Encrypted Chat"
    }
  ],
  image: {
    src: "/assets/images/event/chat1-1.png",
    alt: "Live voice chat feature illustration image"
  },
  cta: {
    text: "Get a Free 14-days trial",
    icon: "/assets/images/icon/arrow.svg",
    iconAlt: "Arrow icon for free trial button"
  }
};
