/** * Footer Component * Simple footer for authenticated pages */ 'use client'; import Link from 'next/link'; export function Footer() { const currentYear = new Date().getFullYear(); return ( ); }