From 7beac4cca3b3e8645e459872db911bb69b122da7 Mon Sep 17 00:00:00 2001 From: Noel Simbolon <84700640+noelsimbolon@users.noreply.github.com> Date: Fri, 17 Nov 2023 02:25:11 +0700 Subject: [PATCH] feat: not found page --- src/pages/NotMatch.tsx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/pages/NotMatch.tsx b/src/pages/NotMatch.tsx index 354d9bc..f7d2400 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; -- GitLab