chore(ops): harden deployment and runtime setup

This commit is contained in:
Schubert Ferenc 2026-07-03 22:59:08 +02:00
parent 1d7e7c41c9
commit c35bd5877e
30 changed files with 534 additions and 61 deletions

17
app/not-found.tsx Normal file
View file

@ -0,0 +1,17 @@
import Link from "next/link";
export default function NotFoundPage() {
return (
<section className="error-page">
<div className="error-card">
<p className="eyebrow">404</p>
<h1>Seite nicht gefunden</h1>
<p className="lead">Die angeforderte Seite existiert nicht oder wurde verschoben.</p>
<div className="actions">
<Link className="button" href="/">Zur Startseite</Link>
<Link className="button light" href="/kontakt">Kontakt aufnehmen</Link>
</div>
</div>
</section>
);
}