From 931c71b400791f3aa04adef1480ad460fa074765 Mon Sep 17 00:00:00 2001 From: RizqiSyahrendra Date: Fri, 18 Apr 2025 21:22:29 +0700 Subject: [PATCH] feat: not found page --- src/app/not-found.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/app/not-found.tsx diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..3f289c6 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,15 @@ +export default function NotFound() { + return ( + <> +
+
+

Page Not Found

+

You may have mistyped the address or the page may have moved

+ + Go to Homepage + +
+
+ + ); +}