Initial commit: eldov.win portfolio with admin backend

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
This commit is contained in:
Jan Wagner
2026-08-31 19:32:17 +02:00
commit ef0f4fbc82
74 changed files with 11605 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
import Link from "next/link";
import type { Locale } from "@/i18n/routes";
import { publicPath, defaultLocale } from "@/i18n/routes";
import { getDict } from "@/i18n/dictionaries";
import { LanguageSwitcher } from "./language-switcher";
import { MobileNav } from "./mobile-nav";
import { site } from "@/content/site";
export function SiteHeader({ locale }: { locale: Locale }) {
const dict = getDict(locale);
const nav = [
{ href: publicPath(locale, "about"), label: dict.nav.about },
{ href: publicPath(locale, "projects"), label: dict.nav.projects },
{ href: publicPath(locale, "contact"), label: dict.nav.contact },
];
return (
<header className="border-b border-hairline bg-[var(--bg-deep)]">
<div className="mx-auto flex max-w-5xl items-center justify-between px-4 py-4">
<Link href={publicPath(locale, "home")} className="flex items-center gap-2 font-mono text-sm">
<span className="text-accent">$</span>
<span className="text-[var(--fg)]">{site.handle}</span>
<span className="text-muted">@eldov.win</span>
</Link>
<nav className="hidden gap-6 md:flex" aria-label="primary">
{nav.map((n) => (
<Link
key={n.href}
href={n.href}
className="font-mono text-sm text-[var(--fg)] transition-colors hover:text-accent"
>
{n.label}
</Link>
))}
<LanguageSwitcher currentLocale={locale} />
</nav>
<MobileNav locale={locale} items={nav} menuLabel={dict.nav.menu} switchLabel={dict.actions.languageSwitch} />
</div>
{locale === defaultLocale ? (
<div className="border-t border-hairline bg-[var(--bg-deep)]">
<div className="mx-auto max-w-5xl px-4 py-1 font-mono text-xs text-muted">
<span className="text-accent">note:</span> geschäftliche Anfragen bitte an w-make.com.
</div>
</div>
) : null}
</header>
);
}