b88a8edd35
- RichText.tsx: Lexical's auto-detected "autolink" nodes (a typed-out email/URL, as opposed to an editor-inserted link) fell through to Payload's unstyled default converter — only "link" was overridden. AGB's Vertragspartner email rendered as plain black text because of this. Both node types now get the same text-brand/hover:underline treatment. - Breadcrumb color revert: the breadcrumb Startseite links across the 4 legal pages/shop should stay their original hover:text-brand treatment — only the actual content/contact links needed the always-brand-colored style, not page-level breadcrumbs. - /blog was the one page missing both a breadcrumb and the text-h-feature heading size every other section page (/shop, legal pages) already uses — added to match. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018unaXmuzVA8ct1b6WoyP1U
87 lines
3.7 KiB
TypeScript
87 lines
3.7 KiB
TypeScript
import type { Metadata } from "next";
|
||
import Link from "next/link";
|
||
import Image from "next/image";
|
||
import { draftMode } from "next/headers";
|
||
import { Reveal } from "../components/Reveal";
|
||
import { Footer } from "../components/Footer";
|
||
import { TrustRow } from "../components/TrustRow";
|
||
import { RichText, extractHeadings } from "../components/RichText";
|
||
import { LiveRichText } from "../components/LiveRichText";
|
||
import { SectionTOC, MobileSectionTOC } from "../components/SectionTOC";
|
||
import { getLegalPage } from "../lib/payload";
|
||
import { formatMonthYear } from "../lib/format";
|
||
|
||
export const metadata: Metadata = {
|
||
title: "AGB",
|
||
description: "Allgemeine Geschäftsbedingungen von einfach produktiv.",
|
||
alternates: { canonical: "/agb" },
|
||
};
|
||
|
||
export default async function AgbPage() {
|
||
const { isEnabled: isPreview } = await draftMode();
|
||
const page = await getLegalPage("agb", { draft: isPreview });
|
||
const headings = page ? extractHeadings(page.content) : [];
|
||
|
||
return (
|
||
<>
|
||
<main className="flex flex-col flex-1 bg-bg-base">
|
||
<Reveal className="flex flex-col gap-3 items-start pb-6 pt-10 px-[var(--layout-padding-x)] w-full">
|
||
<p className="flex items-center gap-2 text-body-sm text-text-muted">
|
||
<Link href="/" className="hover:text-brand transition-colors">Startseite</Link>
|
||
<span>›</span>
|
||
<span className="text-text-primary">AGB</span>
|
||
</p>
|
||
<p
|
||
className="font-semibold text-h-feature text-text-primary"
|
||
style={{ fontFamily: "var(--font-lora)" }}
|
||
>
|
||
Allgemeine Geschäftsbedingungen
|
||
</p>
|
||
{page && <p className="text-body text-text-muted">Stand: {formatMonthYear(page.updatedAt)}</p>}
|
||
</Reveal>
|
||
|
||
{/* MobileSectionTOC — below lg: only, see SectionTOC.tsx's own
|
||
comment. Outside the sidebar's `hidden lg:flex` wrapper below
|
||
(that wrapper's `hidden` would hide this too otherwise). */}
|
||
<div className="lg:hidden px-[var(--layout-padding-x)] pb-4 w-full">
|
||
<MobileSectionTOC sections={headings} />
|
||
</div>
|
||
|
||
<div className="flex flex-col lg:flex-row gap-8 lg:gap-12 items-start pb-10 pt-2 px-[var(--layout-padding-x)] w-full">
|
||
<div className="hidden lg:flex flex-col gap-6 w-[22.5rem] shrink-0 lg:sticky lg:top-32 lg:self-start">
|
||
<SectionTOC sections={headings} />
|
||
|
||
{/* Static, not part of the CMS content — same reasoning as
|
||
the Impressum/Datenschutz pages' own callout cards. */}
|
||
<div className="bg-bg-muted flex flex-col gap-3 items-start p-6 rounded-md w-full">
|
||
<Image alt="" src="/icon-trust-leaf.png" width={28} height={28} className="size-7 object-contain" />
|
||
<p
|
||
className="font-semibold text-body text-text-primary"
|
||
style={{ fontFamily: "var(--font-lora)" }}
|
||
>
|
||
Unser Anspruch
|
||
</p>
|
||
<p className="text-body-sm text-text-muted">
|
||
Wir entwickeln Produkte, die dich im Alltag wirklich weiterbringen – mit Klarheit,
|
||
Qualität und einem bewussten Umgang mit Ressourcen.
|
||
</p>
|
||
<div className="h-[0.125rem] w-8 bg-brand" />
|
||
</div>
|
||
</div>
|
||
|
||
<div className="w-full lg:flex-1 min-w-0">
|
||
{page ? (
|
||
isPreview ? <LiveRichText initialContent={page.content} /> : <RichText content={page.content} />
|
||
) : (
|
||
<p className="text-body text-text-muted">Inhalte werden gerade aktualisiert.</p>
|
||
)}
|
||
</div>
|
||
</div>
|
||
|
||
<TrustRow />
|
||
</main>
|
||
<Footer />
|
||
</>
|
||
);
|
||
}
|