import { useT } from "@agent-native/core/client/i18n"; import { IconArrowLeft } from "@tabler/icons-react"; import { useEffect } from "react"; import { Link, useLocation } from "react-router"; export default function NotFound() { const t = useT(); const location = useLocation(); useEffect(() => { console.error("404 Error:", location.pathname); }, [location.pathname]); return (

404

{t("notFound.message")}

{t("notFound.backToDecks")}
); }