export interface AuthorSocialLink {
  id: number;
  href: string;
  icon: string;
  alt: string;
}

export interface AuthorProfile {
  id: number;
  name: string;
  image: string;
  imageAlt: string;
  bio: string;
  socialLinks: AuthorSocialLink[];
}

export interface AuthorData {
  profiles: AuthorProfile[];
}

export const authorData: AuthorData = {
  profiles: [
    {
      id: 1,
      name: "Admin",
      image: "/assets/images/author/auther1-2.png",
      imageAlt: "Author profile image",
      bio: "SaaS product enthusiast and digital strategist with a passion building and optimizing user-focused experiences. With years of experience in product design, UX, and cloud-based.",
      socialLinks: [
        {
          id: 1,
          href: "#",
          icon: "/assets/images/icon/twitter.svg",
          alt: "Twitter icon",
        },
        {
          id: 2,
          href: "#",
          icon: "/assets/images/icon/facbook.svg",
          alt: "Facebook icon",
        },
        {
          id: 3,
          href: "#",
          icon: "/assets/images/icon/linkedin.svg",
          alt: "LinkedIn icon",
        },
        {
          id: 4,
          href: "#",
          icon: "/assets/images/icon/youtube.svg",
          alt: "YouTube icon",
        },
      ],
    },
  ],
};
