export type SingleTeamSocialLink = {
  id: number;
  title: string;
  href: string;
  iconSrc: string;
  iconAlt: string;
};

export type SingleTeamSkill = {
  id: number;
  title: string;
  percent: number;
  delay: number;
};

export const singleTeamProfile = {
  name: "Donald C. Durst",
  designation: "CEO & Founder",
  imageSrc: "/assets/images/team/team2-10.png",
  imageAlt: "Donald C. Durst - CEO & Founder",
  about: [
    "Passionate UI/UX designer and web developer with over 7 years of experience crafting intuitive, user-focused digital products. I specialize designing SaaS platforms, dashboards and web apps that not only look great but also deliver seamless user experiences.",
    "From wireframes to polished Figma prototypes and responsive front-end development, I bring ideas to life with precision and creativity. I've worked with 500+ clients across industries like healthcare, fintech, and education",
  ],
  contact: {
    email: "support@gmail.com",
    phone: "+1 (234) 567 88 99",
  },
};

export const singleTeamSocialLinks: SingleTeamSocialLink[] = [
  {
    id: 1,
    title: "Facebook",
    href: "#",
    iconSrc: "/assets/images/icon/facebook.svg",
    iconAlt: "Facebook",
  },
  {
    id: 2,
    title: "Twitter",
    href: "#",
    iconSrc: "/assets/images/icon/twitter.svg",
    iconAlt: "Twitter",
  },
  {
    id: 3,
    title: "LinkedIn",
    href: "#",
    iconSrc: "/assets/images/icon/linked-in.svg",
    iconAlt: "LinkedIn",
  },
  {
    id: 4,
    title: "YouTube",
    href: "#",
    iconSrc: "/assets/images/icon/youtube.svg",
    iconAlt: "YouTube",
  },
];

export const singleTeamSkills: SingleTeamSkill[] = [
  { id: 1, title: "UI/UX Design", percent: 90, delay: 300 },
  { id: 2, title: "Development", percent: 83, delay: 400 },
  { id: 3, title: "SEO & Marketing", percent: 76, delay: 500 },
];

export const singleTeamSkillDescription =
  "With a strong foundation in UI/UX design and front-end development, I bring a versatile skill set to every project specialize in creating user-friendly";
