import { Link } from 'react-router-dom'; import { useBranding } from '@/hooks/useBranding'; export function Footer() { const branding = useBranding(); const brandName = branding.brand_name || 'LearnHub'; const currentYear = new Date().getFullYear(); return ( ); }