diff --git a/frontend/apps/web/app/not-found.tsx b/frontend/apps/web/app/not-found.tsx new file mode 100644 index 0000000000..c94d50ef0b --- /dev/null +++ b/frontend/apps/web/app/not-found.tsx @@ -0,0 +1,26 @@ +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; +import BaseLayout from './BaseLayout'; + +export default function Component() { + return ( + +
+ + + + 404 Error + + + +
+
+ The page you are looking for does not exist or may have been + moved. +
+
+
+
+
+
+ ); +}