import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Wrench, ArrowLeft } from "lucide-react"; import { Link } from "wouter"; import { useTranslation } from "react-i18next"; export default function NotFound() { const { t } = useTranslation(); return (
toolr

404

{t("notFound.text")}

); }