export interface ChooseUsItem {
  id: number;
  icon: {
    src: string;
    alt: string;
  };
  title: string;
  description: string;
}

export interface PricingChooseUsData {
  subTitle: string;
  title: string;
  items: ChooseUsItem[];
}

export const pricingChooseUsData: PricingChooseUsData = {
  subTitle: "Why Choose Us",
  title: "Built-In brilliance discover the smart side of chat",
  items: [
    {
      id: 1,
      icon: {
        src: "assets/images/icon/choose2-1.svg",
        alt: "Multilingual Support Icon"
      },
      title: "Multilingual Support",
      description: "Break language barriers connect with users around the globe."
    },
    {
      id: 2,
      icon: {
        src: "assets/images/icon/choose2-2.svg",
        alt: "AI-driven Data Solutions Icon"
      },
      title: "AI-driven data solutions",
      description: "Harness power of artificial intelligence to streamline conversations."
    },
    {
      id: 3,
      icon: {
        src: "assets/images/icon/choose2-3.svg",
        alt: "Seamless Integration Icon"
      },
      title: "Seamless Integration",
      description: "Easily connect your chatbot with the tools and platforms you already."
    },
    {
      id: 4,
      icon: {
        src: "assets/images/icon/choose2-4.svg",
        alt: "Free Trial Available Icon"
      },
      title: "Free Trial Available",
      description: "No Strings Attached. Experience the full power of platform with a risk-free."
    },
    {
      id: 5,
      icon: {
        src: "assets/images/icon/choose2-5.svg",
        alt: "Customizable Options Icon"
      },
      title: "Customizable Options",
      description: "Every business is unique-and your tools should be too our customizable."
    },
    {
      id: 6,
      icon: {
        src: "assets/images/icon/choose2-6.svg",
        alt: "Secure & Reliable Icon"
      },
      title: "Secure & Reliable",
      description: "Built for Security. Trusted for Reliability data is protected industry-leading."
    }
  ]
};
