expressjs -> nextjs

This commit is contained in:
Ludwig Lehnert
2026-03-27 19:50:53 +01:00
parent bcaec8636d
commit 8b937eee72
34 changed files with 3769 additions and 3078 deletions

13
nextjs/app/not-found.js Normal file
View File

@@ -0,0 +1,13 @@
export default function NotFoundPage() {
return (
<main className="page-shell narrow">
<section className="panel centered">
<h1>Seite nicht gefunden</h1>
<p className="muted">Die angeforderte Seite existiert nicht oder wurde verschoben.</p>
<a className="btn" href="/manage/login">
Zurück zur Anmeldung
</a>
</section>
</main>
);
}