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