export interface Testimonial {
  image: string;
  subtitle: string;
  title: string;
  name: string;
  role: string;
}

export const testimonials: Testimonial[] = [
  {
    image: "/assets/images/event/testi1-1.png",
    subtitle: "This platform transformed how we manage.",
    title:
      "We cut down manual tasks by 60% improved team productivity across to boar automation changer!",
    name: "Daniel Rivera",
    role: "CO-Founder",
  },
  {
    image: "/assets/images/event/testi1-2.png",
    subtitle: "Streamlined our workflow and saved us hours!",
    title:
      "From onboarding to growth, the experience has been seamless. Customer business support helpful.",
    name: "Jason Miller",
    role: "Manager",
  },
  {
    image: "/assets/images/event/testi1-3.png",
    subtitle: "It's like having a full team behind our business.",
    title:
      "The platform is incredibly easy helped automate repetitive tasks. It's essential part of our daily operations.",
    name: "Emily Carter",
    role: "Developer",
  },
];
