/** * @file app/components/layout/AppFooter.tsx * @description Site footer component rendering legal compliance links and dynamic copyright notice. */ "use client"; import Link from "next/link"; import { LEGAL_LINKS, COPYRIGHT_TEXT, ICON_MAP } from "@/lib/legal"; /** Renders the site footer containing the dynamic copyright notice and legal compliance links with icons. */ export default function AppFooter() { const currentYear = new Date().getFullYear(); return ( ); }