/** * @file components/layout/Footer.tsx * @description Client component rendering the site footer with a copyright notice and links to legal pages like Imprint and Privacy Policy. */ "use client"; import Link from "next/link"; import { LEGAL_LINKS, COPYRIGHT_TEXT, ICON_MAP } from "@/utils/legal"; /** * Renders the site footer containing the dynamic copyright notice and legal compliance links with icons. * * @returns {JSX.Element} The rendered footer component. */ export default function Footer() { const currentYear = new Date().getFullYear(); return ( ); }