export interface SocialLink {
  id: number;
  title: string;
  url: string;
}

export interface FooterLink {
  id: number;
  title: string;
  url: string;
}

export interface FooterData {
  title: string;
  email: string;
  phone: string;
  newsletterTitle: string;
  socialLinks: SocialLink[];
  copyright: string;
  footerLinks: FooterLink[];
}

export const footerData: FooterData = {
  title: "Let’s create digital success together",
  email: "ibthemes21@gmail.com",
  phone: "+1 (234) 456 88 99",
  newsletterTitle: "Subscribe our newsletter to get latest insights and tips",
  socialLinks: [
    { id: 1, title: "Instagram", url: "https://instagram.com" },
    { id: 2, title: "Twitter", url: "https://twitter.com" },
    { id: 3, title: "LinkedIn", url: "https://linkedin.com" },
    { id: 4, title: "Facebook", url: "https://facebook.com" },
  ],
  copyright: `@${new Date().getFullYear()}-Sasico`,
  footerLinks: [
    { id: 1, title: "Terms & Conditions", url: "/terms" },
    { id: 2, title: "Privacy Policy", url: "/privacy" },
  ],
};
