diff --git a/src/components/NotFound.jsx b/src/components/NotFound.jsx deleted file mode 100644 index 96f2863..0000000 --- a/src/components/NotFound.jsx +++ /dev/null @@ -1,38 +0,0 @@ -import CenterLayout from "@/layouts/CenterLayout"; -import FullPageLayout from "@/layouts/FullPageLayout"; -import {Box, Button, Typography} from "@mui/material"; -import {NextLinkComposed} from "@/core/components/LinkRouting"; -import {useTranslations} from "next-intl"; -import Image from "next/image"; - -const NotFoundComponent = () => { - const t = useTranslations(); - return ( - - - - not found image - - - صفحه ای با این عنوان یافت نشد - - - - - ); -}; - -export default NotFoundComponent;