diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..f87f092 --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,19 @@ + +const NotFound = () => { + return ( +
+
+ + 404 + Error +
+ +

+ There's nothing here... +

+ ...maybe the page you're looking for is not found or never existed. +
+ ); +}; + +export default NotFound;