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

export interface FooterButton {
  label: string;
  href: string;
  icon: string;
  variant: "primary" | "secondary";
}

export interface FooterData {
  subtitle: string;
  title: string;
  highlightText: string;
  description: string;
  buttons: FooterButton[];
  links: FooterLink[];
  scrollTopIcon: string;
  copyright: string;
}

export const footerData: FooterData = {
  subtitle: "Let's Work Together",
  title: "Turn Your Ideas into Reality ",
  highlightText: "with Our Expertise",
  description:
    "Let's work together to bring your ideas to life and create solutions that make an impact.",
  buttons: [
    {
      label: "Start Your Project",
      href: "#",
      icon: "/assets/images/icon/arrow.svg",
      variant: "primary",
    },
    {
      label: "Sell All Works",
      href: "#",
      icon: "/assets/images/icon/arrow.svg",
      variant: "secondary",
    },
  ],
  links: [
    { label: "Features", href: "" },
    { label: "Integrations", href: "" },
    { label: "Download", href: "" },
    { label: "Pricing", href: "" },
  ],
  scrollTopIcon: "/assets/images/icon/arrow4.svg",
  copyright: "Sasico 2025 © All rights reserved",
};
