export interface Testimonial {
  image: string;
  name: string;
  designation: string;
  quote: string;
  ratingIcon: string;
}

export interface TestimonialSection2Data {
  subTitle: string;
  title: string;
  testimonials: Testimonial[];
}

export const testimonialSection2Data: TestimonialSection2Data = {
  subTitle: "Clients feedback",
  title: "100+ Clients Say About Us",
  testimonials: [
    {
      image: "/assets/images/author/auther3-1.png",
      name: "James Anderson",
      designation: "CFO, FinCorp",
      quote:
        "\u201CThis platform transformed the way we handle payments and financial reporting. Everything is seamless and secure.\u201D",
      ratingIcon: "/assets/images/icon/rating1-2.svg",
    },
    {
      image: "/assets/images/author/auther3-2.png",
      name: "Michael Thompson",
      designation: "CFO, FinCorp",
      quote:
        "\u201CThis platform transformed the way we handle payments and financial reporting. Everything is seamless and secure.\u201D",
      ratingIcon: "/assets/images/icon/rating1-2.svg",
    },
    {
      image: "/assets/images/author/auther3-3.png",
      name: "Michael Thompson",
      designation: "CFO, FinCorp",
      quote:
        "\u201CThis platform transformed the way we handle payments and financial reporting. Everything is seamless and secure.\u201D",
      ratingIcon: "/assets/images/icon/rating1-2.svg",
    },
    {
      image: "/assets/images/author/auther3-1.png",
      name: "James Anderson",
      designation: "CFO, FinCorp",
      quote:
        "\u201CThis platform transformed the way we handle payments and financial reporting. Everything is seamless and secure.\u201D",
      ratingIcon: "/assets/images/icon/rating1-2.svg",
    },
    {
      image: "/assets/images/author/auther3-2.png",
      name: "Michael Thompson",
      designation: "CFO, FinCorp",
      quote:
        "\u201CThis platform transformed the way we handle payments and financial reporting. Everything is seamless and secure.\u201D",
      ratingIcon: "/assets/images/icon/rating1-2.svg",
    },
    {
      image: "/assets/images/author/auther3-3.png",
      name: "Michael Thompson",
      designation: "CFO, FinCorp",
      quote:
        "\u201CThis platform transformed the way we handle payments and financial reporting. Everything is seamless and secure.\u201D",
      ratingIcon: "/assets/images/icon/rating1-2.svg",
    },
  ],
};
