import { useT } from "@agent-native/core/client/i18n"; import { IconMail } from "@tabler/icons-react"; import { Link } from "react-router"; import { Button } from "@/components/ui/button"; export function NotFound() { const t = useT(); return (

404

{t("notFound.message")}

); }