export interface ContactBlock {
  id: number;
  icon: {
    src: string;
    alt: string;
  };
  title: string;
  content?: string[];
  links?: {
    href: string;
    text: string;
    className?: string;
  }[];
}

export interface ContactInfoData {
  blocks: ContactBlock[];
}

export const contactInfoData: ContactInfoData = {
  blocks: [
    {
      id: 1,
      icon: {
        src: "assets/images/icon/contact1-1.svg",
        alt: "Main Address Icon",
      },
      title: "Main Address",
      content: ["20 Cooper Square, New York, NY 10003, USA"],
    },
    {
      id: 2,
      icon: {
        src: "assets/images/icon/contact1-2.svg",
        alt: "Email Address Icon",
      },
      title: "Email Address",
      links: [
        {
          href: "mailto:supportsasico@gmail.com",
          text: "supportsasico@gmail.com",
          className: "gmail",
        },
        {
          href: "https://www.sasico.net",
          text: "www.sasico.net",
          className: "gmail",
        },
      ],
    },
    {
      id: 3,
      icon: {
        src: "assets/images/icon/contact1-3.svg",
        alt: "Urgent Help Icon",
      },
      title: "Need helps urgent",
      links: [
        {
          href: "tel:+123456789900",
          text: "+1 (234) 5678 9900",
          className: "nmbr",
        },
        {
          href: "tel:+120030006780",
          text: "+1 (200) 3000 6780",
          className: "nmbr",
        },
      ],
    },
  ],
};
