export interface ContactInfoItem {
  type: "email" | "phone" | "location";
  label: string;
  href?: string;
  className?: string;
}

export interface ContactInfoContent {
  iconSrc: string;
  iconAlt: string;
  title: string;
  description: string;
  items: ContactInfoItem[];
}

export const contactInfoData: ContactInfoContent[] = [
  {
    iconSrc: "/assets/images/icon/message.svg",
    iconAlt: "message icon",
    title: "Need support?",
    description: "Ready to start? Let’s join forces and make your ideas come alive.",
    items: [
      {
        type: "email",
        label: "supportsasico@gmail.com",
        href: "mailto:supportsasico@gmail.com",
        className: "nmbr",
      },
      {
        type: "location",
        label: "20 Cooper Square, New York, NY 10003, USA",
        className: "location",
      },
      {
        type: "phone",
        label: "+1 (234) 567 88 99",
        href: "tel:+12345678899",
        className: "nmbr mb-0",
      },
    ],
  },
];
