/** Site footer — crm-html/index.html footer-style1. */

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

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

export interface FooterNewsletter {
  title: string;
  description: string;
  placeholder: string;
  submitIcon: string;
  submitIconAlt: string;
}

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

export interface SiteFooterContent {
  columns: FooterColumn[];
  newsletter: FooterNewsletter;
  copyright: string;
  legalLinks: FooterLegalLink[];
}

export const siteFooterContent: SiteFooterContent = {
  columns: [
    {
      title: "Product",
      links: [
        { label: "Features", href: "/solutions" },
        { label: "Integrations", href: "/solutions" },
        { label: "Download", href: "/contact" },
        { label: "Pricing", href: "/pricing" },
      ],
    },
    {
      title: "Company",
      links: [
        { label: "About us", href: "/contact" },
        { label: "Latest Blog", href: "/blog" },
        { label: "Our Clients", href: "/contact" },
        { label: "Careers", href: "/contact" },
      ],
    },
    {
      title: "Resources",
      links: [
        { label: "Support center", href: "/help" },
        { label: "Documentation", href: "/help" },
        { label: "Community", href: "/help" },
        { label: "Hosting", href: "/contact" },
      ],
    },
  ],
  newsletter: {
    title: "Join Our Newsletter",
    description: "Never Miss an Update — Sign Up Today",
    placeholder: "Enter email",
    submitIcon: "/assets/images/icon/check1-3.svg",
    submitIconAlt: "Submit newsletter form button icon",
  },
  copyright: "Sasico,2026 © All rights reserved",
  legalLinks: [
    { label: "Terms & Conditions", href: "/contact" },
    { label: "Privacy Policy", href: "/contact" },
  ],
};
