Initial commit

This commit is contained in:
2026-08-01 16:07:57 +02:00
commit 20b254e614
68 changed files with 8467 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { notFound } from "next/navigation";
// Catch-all for unknown paths under a locale (e.g. /en/asdf) so they render
// the styled not-found page inside the locale layout instead of the bare
// default 404.
export default function CatchAllPage() {
notFound();
}