import { useTranslation } from 'react-i18next'; import { Link } from 'react-router-dom'; export function NotFoundPage(): React.JSX.Element { const { t } = useTranslation(); return ( <>
{t('notFound.body')}