Initial commit: spreewaldzeit + Dockerfile for Coolify (Next.js + Prisma/SQLite)

This commit is contained in:
2026-06-03 14:08:48 +02:00
committed by Ihor_Zhekov
commit bf5d79a919
94 changed files with 12480 additions and 0 deletions

21
app/not-found.tsx Normal file
View File

@@ -0,0 +1,21 @@
import Link from "next/link";
export default function NotFound() {
return (
<div className="container py-24 md:py-32 text-center">
<div className="eyebrow mb-4">404</div>
<h1 className="font-display text-display-lg mb-6 leading-[1.02]">
Hier ist nur <span className="italic text-moss-600">Nebel.</span>
</h1>
<p className="text-ink/70 max-w-md mx-auto">
Die Seite, die Sie suchen, gibt es nicht (mehr).
</p>
<Link
href="/"
className="inline-flex items-center gap-2 mt-10 bg-ink text-parchment px-7 py-3.5 rounded-full text-sm hover:bg-moss-700 transition-colors"
>
Zurück zur Startseite
</Link>
</div>
);
}