Files
w-make-portfolio/src/app/not-found.tsx
T
Jan WagnerandCursor 5657b1d202 feat(portfolio): rebuild w-make.com as a bilingual editorial studio
Give clients a real IA, SMTP contact to eldov@w-make.de, and live Batch
evidence instead of a single-page placeholder.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 03:20:16 +02:00

15 lines
483 B
TypeScript

import Link from "next/link";
export default function NotFound() {
return (
<main className="mx-auto flex min-h-[70vh] max-w-3xl flex-col justify-center px-6">
<p className="kicker">404</p>
<h1 className="display mt-4 text-5xl">Seite nicht gefunden.</h1>
<p className="mt-6 text-mute-strong">Die Adresse existiert nicht oder wurde verschoben.</p>
<Link href="/" className="mt-8 text-copper">
Zur Startseite
</Link>
</main>
);
}