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

{t('contact.title')}

{t('contact.description')}{' '} sonnyasdev[at]gmail[dot]com

{t('footer.changes')}

{t('footer.thanks')}

); }