import { useNavigate } from "react-router-dom" import { ArrowLeft, ArrowRight, Home } from "lucide-react" import { Button } from "../components/ui/button" import { useTranslation } from "../hooks/useTranslation" export default function NotFound() { const navigate = useNavigate() const { lang } = useTranslation() const isFa = lang === "fa" return (
404

{isFa ? "صفحه پیدا نشد" : "Page not found"}

{isFa ? "این صفحه وجود ندارد یا آدرس آن تغییر کرده است." : "This page does not exist or its address has changed."}

) }