import { Link } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; export default function PageNotFound() { const { t } = useTranslation(); return (

{t('pageNotFound.title')}

{t('pageNotFound.message')}

); }