import { useTranslation } from 'react-i18next'; import ExternalLink from '~/components/common/external_link'; export default function LegalFooter() { const { t } = useTranslation('legal'); return ( <>
{t('contact.description')}{' '}
{t('footer.changes')}
{t('footer.thanks')}
> ); }