export interface SocialLink {
  platform: string;
  href: string;
  icon: string;
  alt: string;
}

export interface TeamMember {
  id: number;
  name: string;
  role: string;
  image: {
    src: string;
    alt: string;
  };
  socialLinks: SocialLink[];
}

export interface TeamData {
  subtitle: string;
  title: string;
  highlightText: string;
  members: TeamMember[];
  ctaSection: {
    image: {
      src: string;
      alt: string;
    };
    title: string;
    subtitle: string;
    button: {
      label: string;
      href: string;
      icon: string;
    };
  };
}

export const teamData: TeamData = {
  subtitle: "Learn About Us",
  title: "Meet Talented Minds Talented Professionals,",
  highlightText: "Tailored Solutions",
  members: [
    {
      id: 1,
      name: "Michael Benjamin Harris",
      role: "CEO & Founder",
      image: {
        src: "/assets/images/team/team1-1.png",
        alt: "Michael Benjamin Harris CEO & Founder",
      },
      socialLinks: [
        {
          platform: "facebook",
          href: "#",
          icon: "/assets/images/icon/facebook.svg",
          alt: "Facebook icon",
        },
        {
          platform: "twitter",
          href: "#",
          icon: "/assets/images/icon/twitter.svg",
          alt: "Twitter icon",
        },
        {
          platform: "linkedin",
          href: "#",
          icon: "/assets/images/icon/linkedin.svg",
          alt: "LinkedIn icon",
        },
      ],
    },
    {
      id: 2,
      name: "David Jonathan Mitchell",
      role: "Web designer",
      image: {
        src: "/assets/images/team/team1-2.png",
        alt: "David Jonathan Mitchell Web Designer",
      },
      socialLinks: [
        {
          platform: "facebook",
          href: "#",
          icon: "/assets/images/icon/facebook.svg",
          alt: "Facebook icon",
        },
        {
          platform: "twitter",
          href: "#",
          icon: "/assets/images/icon/twitter.svg",
          alt: "Twitter icon",
        },
        {
          platform: "linkedin",
          href: "#",
          icon: "/assets/images/icon/linkedin.svg",
          alt: "LinkedIn icon",
        },
      ],
    },
    {
      id: 3,
      name: "Robert Samuel Anderson",
      role: "Tech Engineer",
      image: {
        src: "/assets/images/team/team1-3.png",
        alt: "Robert Samuel Anderson Tech Engineer",
      },
      socialLinks: [
        {
          platform: "facebook",
          href: "#",
          icon: "/assets/images/icon/facebook.svg",
          alt: "Facebook icon",
        },
        {
          platform: "twitter",
          href: "#",
          icon: "/assets/images/icon/twitter.svg",
          alt: "Twitter icon",
        },
        {
          platform: "linkedin",
          href: "#",
          icon: "/assets/images/icon/linkedin.svg",
          alt: "LinkedIn icon",
        },
      ],
    },
    {
      id: 4,
      name: "Anthony Joseph Reed",
      role: "Web developer",
      image: {
        src: "/assets/images/team/team1-4.png",
        alt: "Anthony Joseph Reed Web Developer",
      },
      socialLinks: [
        {
          platform: "facebook",
          href: "#",
          icon: "/assets/images/icon/facebook.svg",
          alt: "Facebook icon",
        },
        {
          platform: "twitter",
          href: "#",
          icon: "/assets/images/icon/twitter.svg",
          alt: "Twitter icon",
        },
        {
          platform: "linkedin",
          href: "#",
          icon: "/assets/images/icon/linkedin.svg",
          alt: "LinkedIn icon",
        },
      ],
    },
  ],
  ctaSection: {
    image: {
      src: "/assets/images/team/team1-5.png",
      alt: "Join the team illustration",
    },
    title: "Join the Minds Driving Tomorrow's IT Solutions.",
    subtitle: "Be Part of a Team That Makes an Impact.",
    button: {
      label: "Join Our Teams",
      href: "#",
      icon: "/assets/images/icon/arrow.svg",
    },
  },
};
