From d4c8f9bbbc913f38ef5c9d95fa15a136acc234eb Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 3 Feb 2026 12:00:46 +0700 Subject: [PATCH] feat: create not-found page in app --- src/app/not-found.tsx | 5 +++++ 1 file changed, 5 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 00000000..b2b82a77 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,5 @@ +import PageNotFound from '@/components/helper/NotFoundPage'; + +export default function NotFound() { + return ; +}