export interface FooterLogo {
  lightSrc: string;
  darkSrc: string;
  alt: string;
}

export interface SocialLink {
  href: string;
  iconSrc: string;
  iconAlt: string;
}

export interface FooterLink {
  href: string;
  text: string;
}

export interface FooterSection {
  title: string;
  links: FooterLink[];
}

export interface FooterData {
  logo: FooterLogo;
  description: string;
  socialLinks: SocialLink[];
  footerSections: {
    product: FooterSection;
    company: FooterSection;
  };
  newsletter: {
    title: string;
    description: string;
    placeholder: string;
    submitIconSrc: string;
    submitIconAlt: string;
  };
  footerBottom: {
    copyright: () => string;
    termsLink: {
      href: string;
      text: string;
    };
    privacyLink: {
      href: string;
      text: string;
    };
  };
}

export const footerData: FooterData = {
  logo: {
    lightSrc: "/assets/images/logo2.svg",
    darkSrc: "/assets/images/logo2-dark.svg",
    alt: "Company logo",
  },
  description:
    "We empower businesses to connect with their audience in smarter, faster, and more meaningful ways.",
  socialLinks: [
    {
      href: "#",
      iconSrc: "/assets/images/icon/facbook.svg",
      iconAlt: "Facebook icon",
    },
    {
      href: "#",
      iconSrc: "/assets/images/icon/twitter.svg",
      iconAlt: "Twitter icon",
    },
    {
      href: "#",
      iconSrc: "/assets/images/icon/linkedin.svg",
      iconAlt: "LinkedIn icon",
    },
    {
      href: "#",
      iconSrc: "/assets/images/icon/youtube.svg",
      iconAlt: "YouTube icon",
    },
  ],
  footerSections: {
    product: {
      title: "Product",
      links: [
        { href: "/platform", text: "Features" },
        { href: "/platform", text: "Integrations" },
        { href: "/platform", text: "Download" },
        { href: "/#pricing", text: "Pricing" },
      ],
    },
    company: {
      title: "Company",
      links: [
        { href: "/about", text: "About us" },
        { href: "/insights", text: "Latest Blog" },
        { href: "/about", text: "Our Clients" },
        { href: "/contact", text: "Careers" },
      ],
    },
  },
  newsletter: {
    title: "Join Our Newsletter",
    description: "Never Miss an Update — Sign Up Today",
    placeholder: "Enter email",
    submitIconSrc: "/assets/images/icon/check1-3.svg",
    submitIconAlt: "Submit button icon",
  },
  footerBottom: {
    copyright: () => `Sasico,${new Date().getFullYear()} © All rights reserved`,
    termsLink: {
      href: "#",
      text: "Terms & Conditions",
    },
    privacyLink: {
      href: "#",
      text: "Privacy Policy",
    },
  },
};
