export interface TestimonialAuthor {
  image: string;
  imageAlt: string;
  name: string;
  role: string;
}

export interface Testimonial {
  title: string;
  ratingIcon: string;
  ratingAlt: string;
  content: string;
  author: TestimonialAuthor;
  aosAnimation: string;
}

export interface TestimonialsSectionData {
  subtitle: string;
  title: string;
  description: string;
  testimonials: Testimonial[];
}

export const testimonialsData: TestimonialsSectionData = {
  subtitle: "Trusted Clients says",
  title: "Powerful conversations proven results",
  description: "Trusted by over 2.5 million companies worldwide",
  testimonials: [
    {
      title: "Reliable, intuitive, scalable, flexible",
      ratingIcon: "/assets/images/icon/rating1-1.svg",
      ratingAlt: "Star rating icon for testimonial",
      content: "We cut down manual tasks by 60% and improved team productivity across the boar automation changer!",
      author: {
        image: "/assets/images/author/auther1-1.png",
        imageAlt: "Photo of Daniel Rivera testimonial author",
        name: "Daniel Rivera",
        role: "CO-Founder"
      },
      aosAnimation: "fade-right"
    },
    {
      title: "Game-Changer for apps Support!",
      ratingIcon: "/assets/images/icon/rating1-1.svg",
      ratingAlt: "Star rating icon for testimonial",
      content: "Since integrating this chatbot, response time has improved by 70%, and customer satisfaction is at an all-time high.",
      author: {
        image: "/assets/images/author/auther1-2.png",
        imageAlt: "Photo of Sean C. White testimonial author",
        name: "Sean C. White",
        role: "social manger"
      },
      aosAnimation: "fade-up"
    },
    {
      title: "Perfect for Scaling a Startup",
      ratingIcon: "/assets/images/icon/rating1-1.svg",
      ratingAlt: "Star rating icon for testimonial",
      content: "As a small team, this chatbot has been a lifesaver. It handles routine inquiries so we can focus on growing the business!",
      author: {
        image: "/assets/images/author/auther1-3.png",
        imageAlt: "Photo of Philip K. Shields testimonial author",
        name: "Philip K. Shields",
        role: "app developer"
      },
      aosAnimation: "fade-left"
    },
    {
      title: "Our Sales Funnel Runs on Autopilot",
      ratingIcon: "/assets/images/icon/rating1-1.svg",
      ratingAlt: "Star rating icon for testimonial",
      content: "The chatbot engages visitors, qualifies leads, and hands them off to our team-all automatically boosted our conversions.",
      author: {
        image: "/assets/images/author/auther1-4.png",
        imageAlt: "Photo of William C. Irvin testimonial author",
        name: "William C. Irvin",
        role: "CO-Founder"
      },
      aosAnimation: "fade-right"
    },
    {
      title: "Supper Smart, Fast & Reliable!",
      ratingIcon: "/assets/images/icon/rating1-1.svg",
      ratingAlt: "Star rating icon for testimonial",
      content: "We were able to integrate the chatbot with our CRM and helpdesk in minutes. It's reliable, fast, and the support team.",
      author: {
        image: "/assets/images/author/auther1-5.png",
        imageAlt: "Photo of Vincent L. Smith testimonial author",
        name: "Vincent L. Smith",
        role: "CO-Founder"
      },
      aosAnimation: "fade-up"
    },
    {
      title: "Smooth Integration and Support",
      ratingIcon: "/assets/images/icon/rating1-1.svg",
      ratingAlt: "Star rating icon for testimonial",
      content: "We cut down manual tasks by 60% and improved team productivity across the boar automation changer!",
      author: {
        image: "/assets/images/author/auther1-6.png",
        imageAlt: "Photo of Jerry T. Rochon testimonial author",
        name: "Jerry T. Rochon",
        role: "UI designer"
      },
      aosAnimation: "fade-left"
    }
  ]
};
