import Link from "next/link"; import Image from "next/image"; import { Instagram, Facebook } from "lucide-react"; const footerLinks = { shop: [ { label: "All Products", href: "/products" }, { label: "Hair Care", href: "/products" }, { label: "Skin Care", href: "/products" }, { label: "Gift Sets", href: "/products" }, ], about: [ { label: "Our Story", href: "/about" }, { label: "Process", href: "/about" }, { label: "Sustainability", href: "/about" }, ], help: [ { label: "FAQ", href: "/contact" }, { label: "Shipping", href: "/contact" }, { label: "Returns", href: "/contact" }, { label: "Contact Us", href: "/contact" }, ], }; export default function Footer() { const currentYear = new Date().getFullYear(); return ( ); }