- Next.js 16 App Router site with the ANOUMA design system - Payload CMS (PostgreSQL) for offers, events, posts and page content - WebRTC video-call system with custom signaling server - SMTP email reminders and booking-request notifications - Customer accounts, calendar-based availability, and booking workflow
83 lines
3.0 KiB
TypeScript
83 lines
3.0 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { PageHeader } from "@/components/PageHeader";
|
|
import { Section } from "@/components/Section";
|
|
import { PlaceholderNote } from "@/components/PlaceholderNote";
|
|
import { getContactGlobal } from "@/lib/payload/globals";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Impressum",
|
|
description: "Impressum von Anouma gemäß § 5 TMG.",
|
|
robots: { index: false, follow: true },
|
|
};
|
|
|
|
export default async function ImpressumPage() {
|
|
const contact = await getContactGlobal();
|
|
return (
|
|
<>
|
|
<PageHeader title="Impressum" crumbs={[{ title: "Impressum" }]} />
|
|
<Section tone="plain">
|
|
<div className="mx-auto max-w-2xl space-y-8">
|
|
<PlaceholderNote>
|
|
Dieses Impressum enthält noch Platzhalterangaben. Bitte vor Veröffentlichung durch die
|
|
vollständigen, rechtsverbindlichen Angaben gemäß § 5 TMG ersetzen (und im Zweifel
|
|
rechtlich prüfen lassen).
|
|
</PlaceholderNote>
|
|
|
|
<div>
|
|
<h2 className="font-serif text-2xl font-medium text-anouma-plum">Angaben gemäß § 5 TMG</h2>
|
|
<p className="mt-4 leading-relaxed text-anouma-plum">
|
|
[Platzhalter — Vor- und Nachname]
|
|
<br />
|
|
[Platzhalter — Straße und Hausnummer]
|
|
<br />
|
|
[Platzhalter — PLZ und Ort]
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="font-serif text-2xl font-medium text-anouma-plum">Kontakt</h2>
|
|
<p className="mt-4 leading-relaxed text-anouma-plum">
|
|
{contact.phone && (
|
|
<>
|
|
Telefon: {contact.phone}
|
|
<br />
|
|
</>
|
|
)}
|
|
E-Mail: {contact.email}
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="font-serif text-2xl font-medium text-anouma-plum">
|
|
Umsatzsteuer-Identifikationsnummer
|
|
</h2>
|
|
<p className="mt-4 leading-relaxed text-anouma-plum">
|
|
[Platzhalter — sofern vorhanden, gemäß § 27 a Umsatzsteuergesetz]
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="font-serif text-2xl font-medium text-anouma-plum">
|
|
Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV
|
|
</h2>
|
|
<p className="mt-4 leading-relaxed text-anouma-plum">
|
|
[Platzhalter — Vor- und Nachname, Anschrift wie oben]
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="font-serif text-2xl font-medium text-anouma-plum">Haftungshinweis</h2>
|
|
<p className="mt-4 leading-relaxed text-anouma-plum">
|
|
Trotz sorgfältiger inhaltlicher Kontrolle übernehmen wir keine Haftung für die Inhalte
|
|
externer Links. Für den Inhalt der verlinkten Seiten sind ausschließlich deren
|
|
Betreiber verantwortlich.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</Section>
|
|
</>
|
|
);
|
|
}
|