export type SocialLink = {
  href: string;
  icon: string;
  alt: string;
  width: number;
  height: number;
};

export type FooterLink = {
  label: string;
  href: string;
};

export type FooterColumn = {
  title: string;
  delay: number;
  links: FooterLink[];
};

export const socialLinks: SocialLink[] = [
  {
    href: "https://www.facebook.com/",
    icon: "/assets/images/icon/facebook.svg",
    alt: "Facebook Icon",
    width: 10,
    height: 10,
  },
  {
    href: "https://twitter.com/",
    icon: "/assets/images/icon/twitter.svg",
    alt: "Twitter Icon",
    width: 16,
    height: 16,
  },
  {
    href: "https://www.linkedin.com/",
    icon: "/assets/images/icon/linked-in.svg",
    alt: "LinkedIn Icon",
    width: 16,
    height: 16,
  },
  {
    href: "https://www.youtube.com/",
    icon: "/assets/images/icon/youtube.svg",
    alt: "YouTube Icon",
    width: 16,
    height: 16,
  },
];

export const footerColumns: FooterColumn[] = [
  {
    title: "Product",
    delay: 200,
    links: [
      { label: "Features", href: "/#features" },
      { label: "Integrations", href: "/#integrations" },
      { label: "Download", href: "/" },
      { label: "Pricing", href: "/pricing-table" },
    ],
  },
  {
    title: "Company",
    delay: 300,
    links: [
      { label: "About Us", href: "/about-us" },
      { label: "Latest Blog", href: "/blog-grid" },
      { label: "Our Clients", href: "/about-us" },
      { label: "Careers", href: "/career" },
    ],
  },
  {
    title: "Features",
    delay: 400,
    links: [
      { label: "Analytics", href: "/our-service" },
      { label: "Integrations", href: "/#integrations" },
      { label: "Workflows", href: "/our-service" },
      { label: "Dashboards", href: "/our-service" },
    ],
  },
  {
    title: "Links",
    delay: 500,
    links: [
      { label: "My Account", href: "/" },
      { label: "Privacy Policy", href: "/" },
      { label: "FAQs", href: "/faqs" },
      { label: "Contact Us", href: "/contact-us" },
    ],
  },
];
