export interface MapData {
  src: string;
  title: string;
  animation: {
    animation: string;
    duration: number;
    delay: number;
  };
}

export const contactMapData: MapData = {
  src: "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",
  title: "Location of My Business Name in Dublin, Ireland",
  animation: {
    animation: "fade-right",
    duration: 900,
    delay: 300,
  },
};
