2026-04-24 17:12:51 +02:00
|
|
|
import Link from 'next/link'
|
|
|
|
|
import { ArrowLeft } from 'lucide-react'
|
|
|
|
|
import { Button } from '@/components/ui/button'
|
|
|
|
|
|
|
|
|
|
export const metadata = {
|
|
|
|
|
title: 'Impressum | Jamulix',
|
|
|
|
|
description: 'Impressum und Angaben gemäß § 5 TMG für jamulix.de',
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function ImpressumPage() {
|
2026-04-25 21:50:00 +02:00
|
|
|
const name = process.env.OWNER_NAME ?? '[Name]'
|
|
|
|
|
const street = process.env.OWNER_STREET ?? '[Straße und Hausnummer]'
|
|
|
|
|
const zipCity = process.env.OWNER_ZIP_CITY ?? '[PLZ Ort]'
|
|
|
|
|
const email = process.env.OWNER_EMAIL ?? '[Emailadresse]'
|
|
|
|
|
|
2026-04-24 17:12:51 +02:00
|
|
|
return (
|
|
|
|
|
<main className="min-h-screen py-24 lg:py-32">
|
|
|
|
|
<div className="max-w-3xl mx-auto px-6 lg:px-8">
|
|
|
|
|
<Button asChild variant="ghost" className="mb-8 -ml-4">
|
|
|
|
|
<Link href="/">
|
|
|
|
|
<ArrowLeft className="mr-2 size-4" />
|
|
|
|
|
Zurück
|
|
|
|
|
</Link>
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
|
|
<h1 className="font-serif text-4xl lg:text-5xl mb-8">Impressum</h1>
|
2026-04-25 21:50:00 +02:00
|
|
|
|
2026-04-24 17:12:51 +02:00
|
|
|
<div className="prose prose-neutral dark:prose-invert max-w-none space-y-8">
|
|
|
|
|
<section>
|
|
|
|
|
<h2 className="font-serif text-xl mb-4">Angaben gemäß § 5 TMG</h2>
|
|
|
|
|
<p className="text-muted-foreground">
|
2026-04-25 21:50:00 +02:00
|
|
|
{name}<br />
|
|
|
|
|
{street}<br />
|
|
|
|
|
{zipCity}<br />
|
2026-04-24 17:12:51 +02:00
|
|
|
Deutschland
|
|
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
<h2 className="font-serif text-xl mb-4">Kontakt</h2>
|
|
|
|
|
<p className="text-muted-foreground">
|
2026-04-25 21:50:00 +02:00
|
|
|
E-Mail: {email}
|
2026-04-24 17:12:51 +02:00
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
<h2 className="font-serif text-xl mb-4">Verantwortlich für den Inhalt</h2>
|
|
|
|
|
<p className="text-muted-foreground">
|
2026-04-25 21:50:00 +02:00
|
|
|
{name}<br />
|
|
|
|
|
{street}, {zipCity}
|
2026-04-24 17:12:51 +02:00
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
<h2 className="font-serif text-xl mb-4">Haftungsausschluss</h2>
|
|
|
|
|
<p className="text-muted-foreground leading-relaxed">
|
2026-04-25 21:50:00 +02:00
|
|
|
Die Inhalte dieser Seiten wurden mit größter Sorgfalt erstellt.
|
|
|
|
|
Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte
|
2026-04-24 17:12:51 +02:00
|
|
|
kann jedoch keine Gewähr übernommen werden.
|
|
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
)
|
|
|
|
|
}
|