From 5de24a78d37e7b35d476034b862350934d494365 Mon Sep 17 00:00:00 2001 From: kevin-asprec Date: Tue, 14 Apr 2026 09:43:02 +0800 Subject: [PATCH] fix: add not-found.tsx to prevent Html import error during build --- src/app/not-found.tsx | 10 ++++++++++ 1 file changed, 10 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..3cd9eb3 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,10 @@ +export default function NotFound() { + return ( + + +

404 - Page Not Found

+

The page you are looking for does not exist.

+ + + ); +}