export interface SocialLink {
  image: string;
  alt: string;
  href: string;
  width: number;
  height: number;
}

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

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

export interface FooterData {
  scrollTopIcon: string;
  scrollTopAlt: string;
  cta: {
    title: string;
    description: string;
    buttonText: string;
    buttonIcon: string;
    buttonIconAlt: string;
    videoText: string;
    videoIcon: string;
    videoIconAlt: string;
    videoUrl: string;
  };
  about: {
    logo: string;
    logoAlt: string;
    description: string;
    socialLinks: SocialLink[];
  };
  sections: FooterSection[];
  newsletter: {
    title: string;
    description: string;
    placeholder: string;
    submitIcon: string;
    submitIconAlt: string;
  };
  copyright: {
    text: string;
    terms: {
      text: string;
      href: string;
    };
    privacy: {
      text: string;
      href: string;
    };
  };
}

export const footerData: FooterData = {
  scrollTopIcon: "/assets/images/icon/check1-3.svg",
  scrollTopAlt: "Scroll to top arrow icon",
  cta: {
    title: "Start your free trial today",
    description:
      "Let your business thrive with smart conversations, smarter support, better results",
    buttonText: "Start 14th Days Free Trial",
    buttonIcon: "/assets/images/icon/arrow.svg",
    buttonIconAlt: "Arrow Icon",
    videoText: "How It Works",
    videoIcon: "/assets/images/icon/play.svg",
    videoIconAlt: "play btn",
    videoUrl: "https://youtu.be/UxbULt_hCdA?si=yZXRJDjcj9OknLjl",
  },
  about: {
    logo: "/assets/images/logo2.svg",
    logoAlt: "footer logo",
    description:
      "We empower businesses to connect with their audience in smarter, faster, and more meaningful ways.",
    socialLinks: [
      {
        image: "/assets/images/icon/link1.svg",
        alt: "Facebook icon",
        href: "#",
        width: 18,
        height: 18,
      },
      {
        image: "/assets/images/icon/link2.svg",
        alt: "Twitter icon",
        href: "#",
        width: 18,
        height: 18,
      },
      {
        image: "/assets/images/icon/link3.svg",
        alt: "LinkedIn icon",
        href: "#",
        width: 18,
        height: 18,
      },
      {
        image: "/assets/images/icon/link4.svg",
        alt: "Instagram icon",
        href: "#",
        width: 10,
        height: 10,
      },
    ],
  },
  sections: [
    {
      title: "Product",
      links: [
        {
          text: "Features",
          href: "#",
        },
        {
          text: "Integrations",
          href: "#",
        },
        {
          text: "Download",
          href: "#",
        },
        {
          text: "Pricing",
          href: "#",
        },
      ],
    },
    {
      title: "Company",
      links: [
        {
          text: "About us",
          href: "#",
        },
        {
          text: "Latest Blog",
          href: "#",
        },
        {
          text: "Our Clients",
          href: "#",
        },
        {
          text: "Careers",
          href: "#",
        },
      ],
    },
  ],
  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: {
    text: "Sasico,2025 © All rights reserved",
    terms: {
      text: "Terms & Conditions",
      href: "#",
    },
    privacy: {
      text: "Privacy Policy",
      href: "#",
    },
  },
};
