"use client"; import Image from "next/image"; import Link from "next/link"; const Footer = () => { const companyLinks = [ { label: "Home", href: "/#home" }, { label: "About Us", href: "/#about" }, { label: "Product", href: "/#product" }, { label: "Benefits", href: "/#benefits" }, { label: "How it works", href: "/#how-it-works" }, { label: "Use Cases", href: "/#use-cases" }, { label: "Privacy Policy", href: "/privacy" }, ]; const socialLinks = [ { label: "LinkedIn", href: "https://linkedin.com", icon: "linkedin" }, { label: "X", href: "https://x.com", icon: "x" }, { label: "Facebook", href: "https://facebook.com", icon: "facebook" }, { label: "Instagram", href: "https://instagram.com", icon: "instagram" }, ]; return ( ); }; export default Footer;