/** * @file app/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"; /** * Renders the application footer containing dynamic copyright information and legal navigation links. * * @returns {JSX.Element} The rendered footer component. */ export default function Footer() { const currentYear = new Date().getFullYear(); return ( ); }