export interface ContactInfoItem {
  id: number;
  title: string;
  lines: string[];
  icon: string;
  iconAlt: string;
  className?: string;
}

export interface ContactInfoData {
  items: ContactInfoItem[];
}

export const contactInfoData: ContactInfoData = {
  items: [
    {
      id: 1,
      title: "Main address",
      lines: ["20 Cooper Square, New York, NY 10003, USA"],
      icon: "/assets/images/icon/contact1-1.svg",
      iconAlt: "Address Icon",
      className: "contact-block"
    },
    {
      id: 2,
      title: "Email Address",
      lines: ["supportsasico@gmail.com", "www.sasico.net"],
      icon: "/assets/images/icon/contact1-2.svg",
      iconAlt: "Email Icon",
      className: "contact-block"
    },
    {
      id: 3,
      title: "Need helps urgent",
      lines: ["+1 (234) 5678 9900", "+1 (200) 3000 6780"],
      icon: "/assets/images/icon/contact1-3.svg",
      iconAlt: "Phone Icon",
      className: "contact-block v2"
    }
  ]
};
