fix(app-router): remove pages 404/_document; add app/not-found

This commit is contained in:
Thanakarn Klangkasame
2025-09-30 14:54:18 +07:00
parent e93bf46ae2
commit 3e50aa4025

8
src/app/not-found.tsx Normal file
View File

@@ -0,0 +1,8 @@
export default function NotFound() {
return (
<main style={{ padding: 24 }}>
<h1>Not Found</h1>
<p>Sorry, the page you are looking for does not exist.</p>
</main>
);
}