export interface ContactInfoBlock {
  id: number;
  columnClass: string;
  blockClass: string;
  icon: string;
  iconAlt: string;
  title: string;
  lines: string[];
}

export interface ContactInfoAos {
  animation: string;
  duration: number;
  delay: number;
}

export interface ContactInfoData {
  aos: ContactInfoAos[];
  blocks: ContactInfoBlock[];
}

export const contactInfoData: ContactInfoData = {
  aos: [{ animation: "zoom-in", duration: 900, delay: 200 }],
  blocks: [
    {
      id: 1,
      columnClass: "col-lg-4 col-md-12",
      blockClass: "contact-block",
      icon: "/assets/images/icon/contact1-1.svg",
      iconAlt: "Address icon",
      title: "Main address",
      lines: ["20 Cooper Square, New York, NY 10003, USA"],
    },
    {
      id: 2,
      columnClass: "col-lg-4 col-md-12",
      blockClass: "contact-block",
      icon: "/assets/images/icon/contact1-2.svg",
      iconAlt: "Email icon",
      title: "Email Address",
      lines: ["supportsasico@gmail.com", "www.sasico.net"],
    },
    {
      id: 3,
      columnClass: "col-lg-4 col-md-12",
      blockClass: "contact-block v2",
      icon: "/assets/images/icon/contact1-3.svg",
      iconAlt: "Phone icon",
      title: "Need helps urgent",
      lines: ["+1 (234) 5678 9900", "+1 (200) 3000 6780"],
    },
  ],
};
