diff --git a/src/components/helper/NotFoundPage.tsx b/src/components/helper/NotFoundPage.tsx new file mode 100644 index 00000000..fdff493a --- /dev/null +++ b/src/components/helper/NotFoundPage.tsx @@ -0,0 +1,17 @@ +import Button from '@/components/Button'; + +const PageNotFound = () => { + return ( +
+

Halaman Tidak Ditemukan

+

+ Halaman atau data yang anda cari tidak ditemukan. +

+ +
+ ); +}; + +export default PageNotFound;