export interface TestimonialItem {
  authorImage: string;
  authorAlt: string;
  name: string;
  designation: string;
  content: string;
  logoLight: string;
  logoDark: string;
  logoAlt: string;
}

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

export const testimonialsData: TestimonialsSectionData = {
  subTitle: "Our Testimonials",
  title: "Lovely clients say us",
  description:
    "Clients are at the heart of everything we do, and their success stories speak louder than words.",
  testimonials: [
    {
      authorImage: "/assets/images/author/auther1-2.png",
      authorAlt: "Jessica R. - Operations Manager",
      name: "Jessica R.",
      designation: "Operations Manager",
      content:
        "This platform completely transformed how we manage our workflows. It's reliable, and has saved our team countless hours every week!",
      logoLight: "/assets/images/event/paycharm.png",
      logoDark: "/assets/images/event/paycharm-dark.png",
      logoAlt: "PayCharm Logo",
    },
    {
      authorImage: "/assets/images/author/auther1-3.png",
      authorAlt: "David M. - Product Lead",
      name: "David M.",
      designation: "Product Lead",
      content:
        "I've tried several tools before, but nothing comes close to the insights and automation we get here. Our productivity has skyrocketed!",
      logoLight: "/assets/images/event/paycharm2.webp",
      logoDark: "/assets/images/event/paycharm2-dark.png",
      logoAlt: "PayCharm2 Logo",
    },
    {
      authorImage: "/assets/images/author/auther1-4.png",
      authorAlt: "Sofia K. - Marketing Director",
      name: "Sofia K.",
      designation: "Marketing Director",
      content:
        "The onboarding process was seamless, and the support team is always there when we need them. Truly a game-changer for our business.",
      logoLight: "/assets/images/event/paycharm3.webp",
      logoDark: "/assets/images/event/paycharm3-dark.png",
      logoAlt: "PayCharm3 Logo",
    },
    {
      authorImage: "/assets/images/author/auther1-2.png",
      authorAlt: "Jessica R. - Operations Manager",
      name: "Jessica R.",
      designation: "Operations Manager",
      content:
        "This platform completely transformed how we manage our workflows. It's intuitive and has saved our team countless hours every week!",
      logoLight: "/assets/images/event/paycharm.png",
      logoDark: "/assets/images/event/paycharm-dark.png",
      logoAlt: "PayCharm Logo",
    },
    {
      authorImage: "/assets/images/author/auther1-3.png",
      authorAlt: "David M. - Product Lead",
      name: "David M.",
      designation: "Product Lead",
      content:
        "I've tried several tools before, but nothing comes close to the insights and automation we get here. Our productivity has skyrocketed!",
      logoLight: "/assets/images/event/paycharm2.webp",
      logoDark: "/assets/images/event/paycharm2-dark.png",
      logoAlt: "PayCharm2 Logo",
    },
    {
      authorImage: "/assets/images/author/auther1-4.png",
      authorAlt: "Sofia K. - Marketing Director",
      name: "Sofia K.",
      designation: "Marketing Director",
      content:
        "The onboarding process was seamless, and the support team is always there when we need them. Truly a game-changer for our business.",
      logoLight: "/assets/images/event/paycharm3.webp",
      logoDark: "/assets/images/event/paycharm3-dark.png",
      logoAlt: "PayCharm3 Logo",
    },
  ],
};
