export interface TestimonialItem {
  id: number;
  author: {
    imageSrc: string;
    imageAlt: string;
    name: string;
    designation: string;
  };
  content: string;
}

export interface TestimonialsData {
  subtitle: string;
  title: string;
  description: string;
  testimonials: TestimonialItem[];
}

export const testimonialsData: TestimonialsData = {
  subtitle: "Testimonials",
  title: "Trusted & Loved by 500k+ Worldwide Customers",
  description: "Our clients' success speaks for itself. Hear directly from the people and businesses who have trusted our platform.",
  testimonials: [
    {
      id: 1,
      author: {
        imageSrc: "/assets/images/author/auther1-1.webp",
        imageAlt: "Portrait of Sarah Linda",
        name: "Sarah Linda",
        designation: "Designer, Creative Studio",
      },
      content: "We've tried multiple tools, but this one hits the sweet spot between simplicity and powerful features for our team.",
    },
    {
      id: 2,
      author: {
        imageSrc: "/assets/images/author/auther1-3.webp",
        imageAlt: "Portrait of James Bond",
        name: "James Bond",
        designation: "Freelance Consultant",
      },
      content: "I love how easy it is to organize tasks, assign roles, and track progress. It helps me stay on top of everything efficiently.",
    },
    {
      id: 3,
      author: {
        imageSrc: "/assets/images/author/auther1-2.webp",
        imageAlt: "Portrait of Priya Donald",
        name: "Priya Donald",
        designation: "UX Designer, TaskHive",
      },
      content: "The integration options and the clean interface make this the best task management tool we've used so far!",
    },
    {
      id: 4,
      author: {
        imageSrc: "/assets/images/author/auther1-4.webp",
        imageAlt: "Portrait of Elena Rossi",
        name: "Elena Rossi",
        designation: "Marketing Director, BrightPath",
      },
      content: "After testing countless apps, this one finally balances ease of use with the depth our team needs.",
    },
    {
      id: 5,
      author: {
        imageSrc: "/assets/images/author/auther1-5.webp",
        imageAlt: "Portrait of Anna Carter",
        name: "Anna Carter",
        designation: "Team Lead, CloudShift",
      },
      content: "It's rare to find a tool that's both intuitive and packed with everything a growing team requires.",
    },
    {
      id: 6,
      author: {
        imageSrc: "/assets/images/author/auther1-6.webp",
        imageAlt: "Portrait of Maria Lopez",
        name: "Maria Lopez",
        designation: "Product Manager, FlowSync",
      },
      content: "From setup to daily use, it delivers exactly what we need — clean, smart, and incredibly efficient.",
    },
  ],
};
