export type FooterLink = {
  id: number;
  label: string;
  path: string;
};

export type FooterSection = {
  id: number;
  title: string;
  links: FooterLink[];
};

export type SocialLink = {
  id: number;
  platform: string;
  icon: string;
  path: string;
};

export type TermsLink = {
  id: number;
  label: string;
  path: string;
};

export const footerLinks: FooterSection[] = [
  {
    id: 1,
    title: "Product",
    links: [
      { id: 1, label: "Features", path: "#" },
      { id: 2, label: "Integrations", path: "#" },
      { id: 3, label: "Download", path: "#" },
      { id: 4, label: "Pricing", path: "#" },
    ],
  },
  {
    id: 2,
    title: "Company",
    links: [
      { id: 1, label: "About us", path: "#" },
      { id: 2, label: "Latest Blog", path: "#" },
      { id: 3, label: "Our Clients", path: "#" },
      { id: 4, label: "Careers", path: "#" },
    ],
  },
  {
    id: 3,
    title: "Resources",
    links: [
      { id: 1, label: "Support center", path: "#" },
      { id: 2, label: "Documentation", path: "#" },
      { id: 3, label: "Community", path: "#" },
      { id: 4, label: "Hosting", path: "#" },
    ],
  },
];

export const socialLinks: SocialLink[] = [
  { id: 1, platform: "Facebook", icon: "/assets/images/icon/facebook.svg", path: "#" },
  { id: 2, platform: "Twitter", icon: "/assets/images/icon/twitter.svg", path: "#" },
  { id: 3, platform: "LinkedIn", icon: "/assets/images/icon/linkedin.svg", path: "#" },
  { id: 4, platform: "Behance", icon: "/assets/images/icon/behance.svg", path: "#" },
];

export const termsLinks: TermsLink[] = [
  { id: 1, label: "Terms & Conditions", path: "#" },
  { id: 2, label: "Privacy Policy", path: "#" },
];
