export interface SocialLink {
  href: string;
  icon: string;
  alt: string;
  width: number;
  height: number;
}

export interface ContactBlock {
  title: string;
  type: "text" | "links" | "spans" | "social";
  text?: string;
  links?: { href: string; text: string; className: string }[];
  spans?: string[];
  socialLinks?: SocialLink[];
  variant?: string;
  aosDelay: number;
}

export interface ContactInfoSectionData {
  subTitle: string;
  title: string;
  blocks: ContactBlock[];
}

export const contactInfoSectionData: ContactInfoSectionData = {
  subTitle: "Contact Us",
  title:
    "We\u2019re here to help you take your business to the next level. Whether you have questions.",
  blocks: [
    {
      title: "Location",
      type: "text",
      text: "5600 Lakeside Drive, Orlando, FL 32801, USA",
      aosDelay: 200,
    },
    {
      title: "Email Address",
      type: "links",
      links: [
        { href: "#", text: "sasicoinfo@gmail.com", className: "nmbr" },
        { href: "#", text: "+1 (888) 555-7890", className: "nmbr" },
      ],
      aosDelay: 300,
    },
    {
      title: "Working Hours",
      type: "spans",
      spans: ["Monday - Friday", "09 am - 05 pm"],
      aosDelay: 400,
    },
    {
      title: "Social Media",
      type: "social",
      variant: "v2",
      socialLinks: [
        {
          href: "#",
          icon: "/assets/images/icon/facebook.svg",
          alt: "Facebook Icon",
          width: 10,
          height: 10,
        },
        {
          href: "#",
          icon: "/assets/images/icon/linked-in.svg",
          alt: "LinkedIn Icon",
          width: 14,
          height: 20,
        },
        {
          href: "#",
          icon: "/assets/images/icon/twitter.svg",
          alt: "Twitter Icon",
          width: 16,
          height: 16,
        },
        {
          href: "#",
          icon: "/assets/images/icon/behance.svg",
          alt: "YouTube Icon",
          width: 16,
          height: 16,
        },
      ],
      aosDelay: 500,
    },
  ],
};
