diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..ba64d2b --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,21 @@ +import Link from 'next/link'; +import React from 'react'; +import { Button } from 'src/components/atoms'; + +const NotFound = () => { + return ( +
+
+

Page Not Found

+

+ The requested resource could not be found. +

+ + + +
+
+ ); +}; + +export default NotFound;