From 26a98a862e7a69d78e881cf8a6e81d75230df63b Mon Sep 17 00:00:00 2001 From: Amin Ghasempoor Date: Sat, 5 Aug 2023 14:40:08 +0330 Subject: [PATCH] delete not found component --- src/components/NotFound.jsx | 38 ------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/components/NotFound.jsx 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;