export interface SolutionsTestimonial {
  id: number;
  image: {
    src: string;
    alt: string;
  };
  name: string;
  designation: string;
  quote: string;
  aosDelay: number;
}

export interface SolutionsTestimonialsData {
  subtitle: string;
  titleStart: string;
  titleHighlight: string;
  titleEnd: string;
  description: string;
  testimonials: SolutionsTestimonial[];
}

export const solutionsTestimonialsData: SolutionsTestimonialsData = {
  subtitle: "Our Testimonials",
  titleStart: "1000+",
  titleHighlight: "Customer Say",
  titleEnd: "Us",
  description:
    "Hear how more than 1,000 users improved their productivity, streamlined their processes, and found lasting value through our solution.",
  testimonials: [
    {
      id: 1,
      image: { src: "/assets/images/author/auther1-1.webp", alt: "Portrait of Sarah Linda, Designer at Creative Studio" },
      name: "Sarah Linda",
      designation: "Designer, Creative Studio",
      quote: "We've tried multiple tools, but this one hits the sweet spot between simplicity and powerful features team's.",
      aosDelay: 500,
    },
    {
      id: 2,
      image: { src: "/assets/images/author/auther1-3.webp", alt: "Portrait of James Bond, Freelance Consultant" },
      name: "James Bond",
      designation: "Freelance Consultant",
      quote: "I love how easy it is to organize tasks, assign roles, and track progress. It helps me stay of everything without .",
      aosDelay: 700,
    },
    {
      id: 3,
      image: { src: "/assets/images/author/auther1-2.webp", alt: "Portrait of Priya Donald, UX Designer at TaskHive" },
      name: "Priya Donald",
      designation: "UX Designer, TaskHive",
      quote: "The integration options and the clean interface make this to best task manage tool we've used so far!",
      aosDelay: 900,
    },
    {
      id: 4,
      image: { src: "/assets/images/author/auther1-4.webp", alt: "Portrait of Elena Rossi, Marketing Director at BrightPath" },
      name: "Elena Rossi",
      designation: "Marketing Director, BrightPath",
      quote: "After testing countless apps, this one finally balances ease of use with the depth our team needs.",
      aosDelay: 500,
    },
    {
      id: 5,
      image: { src: "/assets/images/author/auther1-5.webp", alt: "Portrait of Anna Carter, Team Lead at CloudShift" },
      name: "Anna Carter",
      designation: "Team Lead, CloudShift",
      quote: "It's rare to find a tool that's both intuitive and packed with everything a growing team requires.",
      aosDelay: 700,
    },
    {
      id: 6,
      image: { src: "/assets/images/author/auther1-6.webp", alt: "Portrait of Maria Lopez, Product Manager at FlowSync" },
      name: "Maria Lopez",
      designation: "Product Manager, FlowSync",
      quote: "From setup to daily use, it delivers exactly what we need — clean, smart, and incredibly efficient.",
      aosDelay: 900,
    },
  ],
};
