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