chore: capture live server state before migration (2026-06-10)

This commit is contained in:
2026-06-10 23:56:36 +02:00
parent 97bf6da106
commit b6ad1e0b2f
52 changed files with 704 additions and 691 deletions
+21 -21
View File
@@ -221,21 +221,21 @@ export default async function ImprintPage({ params }: Props) {
<nav className="mb-8">
<Link
href={`/${locale}`}
className="text-zinc-400 hover:text-white transition-colors"
className="text-muted-foreground hover:text-foreground transition-colors"
>
Home
</Link>
<span className="mx-2 text-zinc-600">/</span>
<span className="text-white">{c.title}</span>
<span className="mx-2 text-muted-foreground/60">/</span>
<span className="text-foreground">{c.title}</span>
</nav>
<h1 className="text-4xl font-bold text-white mb-8">{c.title}</h1>
<h1 className="text-4xl font-bold text-foreground mb-8">{c.title}</h1>
<div className="prose prose-invert max-w-none space-y-8">
{/* Contact */}
<section className="bg-zinc-900/50 p-6 rounded-xl ring-1 ring-zinc-800">
<h2 className="text-2xl font-semibold text-white mb-4">{c.contact.title}</h2>
<div className="text-zinc-300 space-y-1">
<section className="bg-background/50 p-6 rounded-xl ring-1 ring-border">
<h2 className="text-2xl font-semibold text-foreground mb-4">{c.contact.title}</h2>
<div className="text-foreground/80 space-y-1">
{c.contact.content.map((line, index) => (
<p key={index}>{line}</p>
))}
@@ -244,25 +244,25 @@ export default async function ImprintPage({ params }: Props) {
{/* Liability */}
<section>
<h2 className="text-2xl font-semibold text-white mb-4">{c.liability.title}</h2>
<h2 className="text-2xl font-semibold text-foreground mb-4">{c.liability.title}</h2>
{c.liability.sections.map((section, index) => (
<div key={index} className="mb-4">
<h3 className="text-xl font-medium text-white mb-2">{section.title}</h3>
<p className="text-zinc-300">{section.content}</p>
<h3 className="text-xl font-medium text-foreground mb-2">{section.title}</h3>
<p className="text-foreground/80">{section.content}</p>
</div>
))}
</section>
{/* Copyright */}
<section>
<h2 className="text-2xl font-semibold text-white mb-4">{c.copyright.title}</h2>
<p className="text-zinc-300">{c.copyright.content}</p>
<h2 className="text-2xl font-semibold text-foreground mb-4">{c.copyright.title}</h2>
<p className="text-foreground/80">{c.copyright.content}</p>
</section>
{/* Images */}
<section>
<h2 className="text-2xl font-semibold text-white mb-4">{c.images.title}</h2>
<ul className="list-disc list-inside text-zinc-300 space-y-1">
<h2 className="text-2xl font-semibold text-foreground mb-4">{c.images.title}</h2>
<ul className="list-disc list-inside text-foreground/80 space-y-1">
{c.images.content.map((item, index) => (
<li key={index}>{item}</li>
))}
@@ -271,8 +271,8 @@ export default async function ImprintPage({ params }: Props) {
{/* Privacy */}
<section>
<h2 className="text-2xl font-semibold text-white mb-4">{c.privacy.title}</h2>
<p className="text-zinc-300">
<h2 className="text-2xl font-semibold text-foreground mb-4">{c.privacy.title}</h2>
<p className="text-foreground/80">
{c.privacy.content}{' '}
<Link href={`/${locale}/privacy`} className="text-orange-500 hover:text-orange-400 underline">
{c.privacy.link}
@@ -282,15 +282,15 @@ export default async function ImprintPage({ params }: Props) {
</section>
{/* Technical */}
<section className="bg-zinc-900/50 p-6 rounded-xl ring-1 ring-zinc-800">
<h2 className="text-2xl font-semibold text-white mb-4">{c.technical.title}</h2>
<p className="text-zinc-300">{c.technical.design}</p>
<p className="text-zinc-300">{c.technical.tech}</p>
<section className="bg-background/50 p-6 rounded-xl ring-1 ring-border">
<h2 className="text-2xl font-semibold text-foreground mb-4">{c.technical.title}</h2>
<p className="text-foreground/80">{c.technical.design}</p>
<p className="text-foreground/80">{c.technical.tech}</p>
</section>
{/* Copyright Notice */}
<section>
<p className="text-zinc-400">
<p className="text-muted-foreground">
&copy; {new Date().getFullYear()} Damjan Savić. {c.copyrightNotice}
</p>
</section>