diff --git a/packages/reservation-platform/src/app/not-found.tsx b/packages/reservation-platform/src/app/not-found.tsx new file mode 100644 index 0000000..9f51f83 --- /dev/null +++ b/packages/reservation-platform/src/app/not-found.tsx @@ -0,0 +1,11 @@ +import Link from "next/link"; + +export default function NotFound() { + return ( +
+

Nicht gefunden

+

Die angefragte Seite konnte nicht gefunden werden.

+ Zurück zur Startseite +
+ ); +}