Privates Portfolio von eldov (Jan Wagner). Next.js 16 / React 19 / Tailwind 4 /
SQLite. Eigenes Dark-/Terminal-Theme (Magenta+Grün-Akzente, ASCII-Boxen).
Public Routes (DE default, /en für Englisch):
- /, /ueber-mich, /projekte, /projekte/[slug], /kontakt, /impressum, /datenschutz
- Sitemap, robots, OG, JSON-LD
Admin (HMAC-Single-User, HttpOnly-Cookie):
- /admin/login, /admin/dashboard, /admin/profile, /admin/projects (CRUD)
- API: /api/admin/{login,logout,session,profile,projects,projects/[slug]}
Initial-Seed: Hermes, Casino-Bot, Polymarket-Trader, QuantMuse, Crypto-/Trade-Bot,
TS6-Bot, Freewarez-Landingpage, Minecraft-Portal, OSS-Themes, AI-Subscription-Manager,
LAMP-Link-Themes, Android. KEIN Batchmaker/W-Make (das gehört zu w-make.com).
Stack:
- better-sqlite3 mit Schema-Migration + idempotentem Seed
- HMAC-signiertes Session-Cookie mit timingSafeEqual
- Rate-Limit für /api/admin/login
- Docker + deploy-vps.sh analog w-make-com → free-warez.top
16 lines
550 B
TypeScript
16 lines
550 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function GlobalNotFound() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-[var(--bg)] px-4">
|
|
<div className="ascii-box max-w-md text-center">
|
|
<p className="font-mono text-xs uppercase text-muted">404 · not found</p>
|
|
<h1 className="mt-2 text-2xl font-semibold">Diese Seite existiert nicht.</h1>
|
|
<Link href="/" className="mt-4 inline-block text-accent hover:underline">
|
|
← eldov.win
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|