import * as React from "react"; import { useTranslation, Trans } from "react-i18next"; import { Link } from "react-router-dom"; import Empty from "~/components/Empty"; import Scene from "~/components/Scene"; import { homePath } from "~/utils/routeHelpers"; const Error404 = () => { const { t } = useTranslation(); return (

{t("Not Found")}

We were unable to find the page you’re looking for. Go to the{" "} homepage?
); }; export default Error404;