import React from 'react'; import { Link } from '@inertiajs/react'; import { useTranslation } from 'react-i18next'; import { useConsent } from '@/contexts/consent'; const Footer: React.FC = () => { const { t } = useTranslation(['marketing', 'legal', 'common']); const { openPreferences } = useConsent(); return ( ); }; export default Footer;