export type TestimonialItem = {
  id: number;
  authorImage: string;
  authorImageAlt: string;
  quote: string;
  authorName: string;
  designation: string;
  aosDelay: string;
};

export const testimonials: TestimonialItem[] = [
  {
    id: 1,
    authorImage: "/assets/images/author/testi1-1.png",
    authorImageAlt: "William C. Irvin",
    quote:
      '"Chatbot engages visitors, qualifies leads, hands them to our team automatically boosted conversions."',
    authorName: "William C. Irvin,",
    designation: "CO-Founder",
    aosDelay: "300",
  },
  {
    id: 2,
    authorImage: "/assets/images/author/testi1-2.png",
    authorImageAlt: "David Chen Mikser",
    quote:
      '"We’ve tried several tools, but nothing comes close to the efficiency and ease of this AI software offers."',
    authorName: "David Chen Mikser,",
    designation: "CEO at TechNova",
    aosDelay: "500",
  },
  {
    id: 3,
    authorImage: "/assets/images/author/testi1-3.png",
    authorImageAlt: "Emma Williams",
    quote:
      '"Must-have for any business looking to stay ahead in the digital age. The support team is also fantastic!."',
    authorName: "Emma Williams,",
    designation: "Co-Founder",
    aosDelay: "700",
  },
  {
    id: 4,
    authorImage: "/assets/images/author/testi1-1.png",
    authorImageAlt: "William C. Irvin",
    quote:
      '"Chatbot engages visitors, qualifies leads, hands them to our team automatically boosted conversions."',
    authorName: "William C. Irvin,",
    designation: "CO-Founder",
    aosDelay: "300",
  },
  {
    id: 5,
    authorImage: "/assets/images/author/testi1-2.png",
    authorImageAlt: "David Chen Mikser",
    quote:
      '"We’ve tried several tools, but nothing comes close to the efficiency and ease of this AI software offers."',
    authorName: "David Chen Mikser,",
    designation: "CEO at TechNova",
    aosDelay: "500",
  },
  {
    id: 6,
    authorImage: "/assets/images/author/testi1-3.png",
    authorImageAlt: "Emma Williams",
    quote:
      '"Must-have for any business looking to stay ahead in the digital age. The support team is also fantastic!."',
    authorName: "Emma Williams,",
    designation: "Co-Founder",
    aosDelay: "700",
  },
];
