fix: add not-found.tsx to prevent Html import error during build

This commit is contained in:
kevin-asprec
2026-04-14 09:43:02 +08:00
parent 337a780d0c
commit 5de24a78d3

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

@@ -0,0 +1,10 @@
export default function NotFound() {
return (
<html lang="en">
<body>
<h1>404 - Page Not Found</h1>
<p>The page you are looking for does not exist.</p>
</body>
</html>
);
}