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

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

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

export interface FooterSectionData {
  logo: {
    light: string;
    dark: string;
    alt: string;
  };
  description: string;
  socialLinks: SocialLink[];
  widgets: FooterWidget[];
  contactWidget: {
    title: string;
    email: string;
    phone: string;
    address: string;
  };
  copyright: {
    year: string;
    company: string;
    companyHref: string;
    text: string;
  };
}

export const footerSectionData: FooterSectionData = {
  logo: {
    light: "/assets/images/logo.svg",
    dark: "/assets/images/logo-dark.svg",
    alt: "Sasico SaaS Footer Logo",
  },
  description:
    "Fintech software empowers financial institutions and businesses to deliver faster, smarter, and more secure.",
  socialLinks: [
    {
      icon: "/assets/images/icon/facebook.svg",
      alt: "Facebook Icon",
      href: "#",
      width: 10,
      height: 10,
    },
    {
      icon: "/assets/images/icon/linked-in.svg",
      alt: "LinkedIn Icon",
      href: "#",
      width: 14,
      height: 14,
    },
    {
      icon: "/assets/images/icon/twitter.svg",
      alt: "Twitter Icon",
      href: "#",
      width: 16,
      height: 16,
    },
    {
      icon: "/assets/images/icon/behance.svg",
      alt: "YouTube Icon",
      href: "#",
      width: 16,
      height: 16,
    },
  ],
  widgets: [
    {
      title: "Resources",
      links: [
        { label: "About", href: "/about" },
        { label: "Solutions", href: "/solutions" },
        { label: "Pricing", href: "/pricing" },
        { label: "Contact", href: "/contact" },
      ],
    },
    {
      title: "Company",
      links: [
        { label: "Blog", href: "/blog" },
        { label: "About", href: "/about" },
        { label: "Pricing", href: "/pricing" },
        { label: "Contact", href: "/contact" },
      ],
    },
    {
      title: "Follow Us",
      links: [
        { label: "Instagram", href: "#" },
        { label: "LinkedIn", href: "#" },
        { label: "Twitter", href: "#" },
        { label: "Facebook", href: "#" },
      ],
    },
  ],
  contactWidget: {
    title: "Get In Touch",
    email: "support@Gmail.com",
    phone: "+1 (200) 300 400",
    address: "1234 Market Street, Suite 500 CA 94103, USA",
  },
  copyright: {
    year: "2026",
    company: "Sasico",
    companyHref: "/",
    text: "All Rights Reserved.",
  },
};
