export interface ContactMapItem {
  id: number;
  title: string;
  iframeSrc: string;
  iframeTitle: string;
  aosAnimation: string;
  aosDuration: number;
  aosDelay: number;
}

export interface ContactMapData {
  items: ContactMapItem[];
}

export const contactMapData: ContactMapData = {
  items: [
    {
      id: 1,
      title: "google-map",
      iframeSrc:
        "https://maps.google.com/maps?width=100%25&height=600&hl=en&q=1%20Grafton%20Street,%20Dublin,%20Ireland+(My%20Business%20Name)&t=&z=14&ie=UTF8&iwloc=B&output=embed",
      iframeTitle: "Location of My Business Name in Dublin, Ireland",
      aosAnimation: "fade-up",
      aosDuration: 900,
      aosDelay: 200,
    },
  ],
};
