feat: create not-found page in app

This commit is contained in:
ValdiANS
2026-02-03 12:00:46 +07:00
parent 0c0ad04c20
commit d4c8f9bbbc
+5
View File
@@ -0,0 +1,5 @@
import PageNotFound from '@/components/helper/NotFoundPage';
export default function NotFound() {
return <PageNotFound />;
}