export interface TestimonialItem {
  id: number;
  name: string;
  designation: string;
  text: string;
  img: string;
}

export interface TestimonialData {
  subTitle: string;
  title: string;
  testimonials: TestimonialItem[];
}

export const testimonialData: TestimonialData = {
  subTitle: "Clients Testimonials",
  title: "Clients share their experience loud and clear",
  testimonials: [
    {
      id: 1,
      name: "Mark S. Bergstrom",
      designation: "Product Manager, SaaS Startup",
      text: "I’ve worked with several agencies, but this team stands out. They’re fast creative and incredibly professional.",
      img: "/assets/images/event/testi1-1.png",
    },
    {
      id: 2,
      name: "Mark S. Bergstrom",
      designation: "Product Manager, SaaS Startup",
      text: "I’ve worked with several agencies, but this team stands out. They’re fast creative and incredibly professional.",
      img: "/assets/images/event/testi1-1.png",
    },
    {
      id: 3,
      name: "Mark S. Bergstrom",
      designation: "Product Manager, SaaS Startup",
      text: "I’ve worked with several agencies, but this team stands out. They’re fast creative and incredibly professional.",
      img: "/assets/images/event/testi1-1.png",
    },
  ],
};
