import React from "react"; import { Link, useNavigate } from "react-router"; import { Button } from "~/components/ui/button"; interface NotFoundProps { title?: string; message?: string; showBackButton?: boolean; } export function NotFound({ title = "صفحه یافت نشد", message = "متأسفانه صفحهای که به دنبال آن هستید وجود ندارد یا منتقل شده است.", showBackButton = true, }: NotFoundProps) { const navigate = useNavigate(); const handleGoBack = () => { navigate(-1); }; const handleGoHome = () => { navigate("/dashboard"); }; return (
{message}
یا میتوانید به این صفحات بروید: