export interface Testimonial {
  id: number;
  quote: string;
  author: {
    name: string;
    role: string;
  };
  image: {
    src: string;
    alt: string;
  };
}

export interface TestimonialsData {
  subtitle: string;
  title: string;
  highlightText: string;
  testimonials: Testimonial[];
}

export const testimonialsData: TestimonialsData = {
  subtitle: "Our Testimonials",
  title: "1000+ ",
  highlightText: "Customer Say",
  testimonials: [
    {
      id: 1,
      quote:
        '"This platform completely transformed how we manage our workflows. It\'s intuitive, reliable, and has saved our team countless hours every week!"',
      author: {
        name: "James Anderson,",
        role: "Operations Manager",
      },
      image: {
        src: "/assets/images/author/testi1-1.png",
        alt: "James Anderson Operations Manager testimonial photo",
      },
    },
    {
      id: 2,
      quote:
        '"Using this tool has streamlined our entire workflow. It\'s fast and has drastically reduced the time we spend on repetitive tasks."',
      author: {
        name: "Michael Harris,",
        role: "Web Developer",
      },
      image: {
        src: "/assets/images/author/testi1-2.webp",
        alt: "Michael Harris Web Developer testimonial photo",
      },
    },
    {
      id: 3,
      quote:
        "Our team became more organized and efficient from day one. The platform is smart, easy to use, and truly elevates how we work.",
      author: {
        name: "Jenifer Trump,",
        role: "Tech Engineer",
      },
      image: {
        src: "/assets/images/author/testi1-3.webp",
        alt: "Jenifer Trump Tech Engineer testimonial photo",
      },
    },
  ],
};
