From 3e50aa4025f44f9990d62ce068520e8de3bef7cc Mon Sep 17 00:00:00 2001 From: Thanakarn Klangkasame <77600906+Simulationable@users.noreply.github.com> Date: Tue, 30 Sep 2025 14:54:18 +0700 Subject: [PATCH] fix(app-router): remove pages 404/_document; add app/not-found --- src/app/not-found.tsx | 8 ++++++++ 1 file changed, 8 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..506a92f --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,8 @@ +export default function NotFound() { + return ( +
+

Not Found

+

Sorry, the page you are looking for does not exist.

+
+ ); +} \ No newline at end of file