import { Button } from "@/components/ui/button"; import { Card, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/components/ui/card"; import { useState } from "react"; import { useTranslation } from "react-i18next"; import { useNavigate } from "react-router"; export const NotFoundPage = () => { const { t } = useTranslation(); const navigate = useNavigate(); const [loading, setLoading] = useState(false); const handleRedirect = () => { setLoading(true); navigate("/"); }; return ( {t("notFoundTitle")} {t("notFoundSubtitle")} ); };