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

{t("common.pageNotFound")}

{t("common.pageNotFoundDescription")}

); }