import { useTranslation } from 'react-i18next' export default function NotFound() { const { t } = useTranslation() return (
{t('Lost in the void')} 🌌
(404)
) }