import Link from "next/link"; import React from "react"; import SocialIcons from "@/components/SocialIcons"; import { footerLinks } from "@/constants"; import Logo from "@/components/Logo"; function Footer() { const currentYear = new Date().getFullYear(); return ( ); } export default Footer;