export interface TestimonialAuthor {
  image: string;
  name: string;
  designation: string;
}

export interface TestimonialItem {
  author: TestimonialAuthor;
  quote: string;
  rating: {
    image: string;
    alt: string;
  };
}

export interface TestimonialSectionData {
  subTitle: string;
  title: string;
  description: string;
  testimonialsRow1: TestimonialItem[];
  testimonialsRow2: TestimonialItem[];
}

export const testimonialSectionData: TestimonialSectionData = {
  subTitle: "Clients feedback",
  title: "Why Clients Trust Our Fintech Solutions",
  description:
    "Our clients' experiences speak volumes about the impact of our solutions.",
  testimonialsRow1: [
    {
      author: {
        image: "/assets/images/author/auther1-1.png",
        name: "James Anderson",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-2.png",
        name: "Michael Thompson",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-3.png",
        name: "Robert Wilson",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-4.png",
        name: "William Harris",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-9.png",
        name: "Emily Johnson",
        designation: "CEO, TechStart",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
  ],
  testimonialsRow2: [
    {
      author: {
        image: "/assets/images/author/auther1-5.png",
        name: "Daniel Roberts",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-6.png",
        name: "Joshua Carter",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-7.png",
        name: "Matthew Walker",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-8.png",
        name: "Sophia Martinez",
        designation: "CTO, InnovateCo",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
    {
      author: {
        image: "/assets/images/author/auther1-6.png",
        name: "Christopher Scott",
        designation: "CFO, FinCorp",
      },
      quote:
        '"This platform transformed the way we handle payments and financial reporting. Everything is seamless and secure."',
      rating: {
        image: "/assets/images/icon/rating1-2.svg",
        alt: "5 star rating",
      },
    },
  ],
};
