From c540286b0c13748e912a443ca54c7b4cc4e59575 Mon Sep 17 00:00:00 2001 From: shikhar360 Date: Mon, 5 Jun 2023 23:27:47 +0530 Subject: [PATCH] 404 page added --- app/not-found.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/not-found.tsx diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..f87f092 --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,19 @@ + +const NotFound = () => { + return ( +
+
+ + 404 + Error +
+ +

+ There's nothing here... +

+ ...maybe the page you're looking for is not found or never existed. +
+ ); +}; + +export default NotFound;