diff --git a/src/pages/NotMatch.tsx b/src/pages/NotMatch.tsx index 354d9bc52ccc252b66d95bed39cb5990c2e1a467..f7d2400a3a299d2a88a6de2147ca247a7cbca9e1 100644 --- a/src/pages/NotMatch.tsx +++ b/src/pages/NotMatch.tsx @@ -1,9 +1,19 @@ const NotMatch = () => { return ( - <div> - <h1 className="text-4xl text-white">404 Not Found</h1> - </div> + <> + <div className="h-screen flex flex-col items-center justify-center"> + <h1 className="font-bold text-3xl text-neutral-100"> + Oops! + </h1> + <p className="my-5 text-neutral-100"> + Sorry, an unexpected error has occurred. + </p> + <p className="text-neutral-100"> + Not Found + </p> + </div> + </> ); }; -export default NotMatch; \ No newline at end of file +export default NotMatch;