export const contactInfoContent = {
  subtitle: "Get In Touch",
  title: "Let’s Make Something Awesome Together",
  description:
    "Have a project in mind or need help bringing your digital vision to life? We’d love to hear from you! Whether you’re starting",
  helpLabel: "Need Help?",
  socialLabel: "Social Media",
} as const;

export type ContactInfoItem =
  | {
      type: "text";
      href: string;
      title: string;
      text: string;
    }
  | {
      type: "address";
      href: string;
      title: string;
      lines: [string, string];
    };

export const contactInfoItems: ContactInfoItem[] = [
  {
    type: "text",
    href: "mailto:support@gmail.com",
    title: "Email Us",
    text: "support@gmail.com",
  },
  {
    type: "text",
    href: "tel:+18003308885544",
    title: "Call Us",
    text: "800 330 888 55 44",
  },
  {
    type: "address",
    href: "#",
    title: "Visit Us",
    lines: ["838 Broadway, New York,", "NY 10003, USA"],
  },
];

export type ContactInfoSocialItem = {
  href: string;
  title: string;
  icon: string;
  alt: string;
  width: number;
  height: number;
};

export const contactInfoSocialItems: ContactInfoSocialItem[] = [
  {
    href: "#",
    title: "Facebook",
    icon: "/assets/images/icon/social1-1.svg",
    alt: "Facebook Icon",
    width: 10,
    height: 10,
  },
  {
    href: "#",
    title: "Twitter",
    icon: "/assets/images/icon/social1-2.svg",
    alt: "Twitter Icon",
    width: 16,
    height: 16,
  },
  {
    href: "#",
    title: "LinkedIn",
    icon: "/assets/images/icon/social1-3.svg",
    alt: "LinkedIn Icon",
    width: 16,
    height: 16,
  },
  {
    href: "#",
    title: "Instagram",
    icon: "/assets/images/icon/social1-4.svg",
    alt: "Instagram Icon",
    width: 16,
    height: 16,
  },
  {
    href: "#",
    title: "YouTube",
    icon: "/assets/images/icon/social1-5.svg",
    alt: "YouTube Icon",
    width: 16,
    height: 16,
  },
  {
    href: "#",
    title: "Pinterest",
    icon: "/assets/images/icon/social1-6.svg",
    alt: "Pinterest Icon",
    width: 16,
    height: 16,
  },
];
