export interface SocialLinkItem {
  href: string;
  title: string;
  src: string;
  alt: string;
}

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

export interface FooterData {
  title: string;
  description: string;
  buttonText: string;
  buttonIcon: {
    src: string;
    alt: string;
  };
  benefits: {
    iconSrc: string;
    iconAlt: string;
    text: string;
  }[];
  logo: {
    lightSrc: string;
    darkSrc: string;
    alt: string;
  };
  aboutDescription: string;
  socialLinks: SocialLinkItem[];
  sections: FooterSection[];
  copyright: string;
  scrollTopButton: {
    iconSrc: string;
    alt: string;
  };
}

export const footerData: FooterData = {
  title: "Build a Stunning Website with Expert Guidance",
  description: "Try it free today — turn your ideas into stunning creations.",
  buttonText: "Subscribe",
  copyright: "Sasico, " + new Date().getFullYear() + " © All rights reserved",
  buttonIcon: {
    src: "/assets/images/icon/arrow.svg",
    alt: "Subscribe Arrow Icon",
  },
  benefits: [
    {
      iconSrc: "/assets/images/icon/check3.svg",
      iconAlt: "Check Icon",
      text: "No credit card required",
    },
    {
      iconSrc: "/assets/images/icon/check3.svg",
      iconAlt: "Check Icon", 
      text: "Get 14-Day full free trial",
    },
  ],
  logo: {
    lightSrc: "/assets/images/logo2.svg",
    darkSrc: "/assets/images/logo2-dark.svg",
    alt: "Footer Logo",
  },
  aboutDescription:
    "An AI website builder empowers anyone to create professional, high-performing websites without needing to write a single line of code.",
  socialLinks: [
    {
      href: "#",
      title: "",
      src: "/assets/images/icon/facebook.svg",
      alt: "Facebook Icon",
    },
    {
      href: "#",
      title: "",
      src: "/assets/images/icon/twitter.svg",
      alt: "Twitter Icon",
    },
    {
      href: "#",
      title: "",
      src: "/assets/images/icon/linked.svg",
      alt: "LinkedIn Icon",
    },
    {
      href: "#",
      title: "",
      src: "/assets/images/icon/football.svg",
      alt: "Football Icon",
    },
  ],
  sections: [
    {
      title: "Product",
      links: [
        { text: "AI Site Builder", href: "" },
        { text: "Figma Library", href: "" },
        { text: "Webflow Library", href: "" },
        { text: "Browser Extensions", href: "" },
        { text: "Website Builder", href: "" },
        { text: "AI Website Builder", href: "" },
        { text: "Print on Demand", href: "" },
      ],
    },
    {
      title: "Tools",
      links: [
        { text: "Website Builder", href: "" },
        { text: "AI Website Builder", href: "" },
        { text: "Print on Demand", href: "" },
        { text: "Ecommerce Website", href: "" },
        { text: "Link in Bio", href: "" },
        { text: "Portfolio Website", href: "" },
      ],
    },
    {
      title: "Community",
      links: [
        { text: "Terms & Conditions", href: "" },
        { text: "Privacy Policy", href: "" },
        { text: "Refund Policy", href: "" },
        { text: "GDPR Compliance", href: "" },
        { text: "Affiliate Policy", href: "" },
      ],
    },
  ],
  scrollTopButton: {
    iconSrc: "/assets/images/icon/arrow4.svg",
    alt: "Scroll to top arrow icon",
  },
};
