import { useTranslation } from "react-i18next"; export default function NotFound() { const { t } = useTranslation(); return (

404

{t("notfound.title")}
); }