import Image from "next/image"; import { Reveal } from "./Reveal"; export function About() { return (
{/* Text content — relative + z-10 so it renders above the overlapping photo at lg+. Comes first in DOM at every breakpoint (no reorder here — unlike Hero, there's no conversion CTA at stake). The 1:1.4 text:image ratio (text gets the narrower share) applies from sm: up unchanged — the photo needs the room, the text column doesn't need to be wide (the inner quote/bio row stays stacked at Tablet regardless, see below, so a wider text column doesn't even help it go inline; it just steals space the photo should have — reported 2026-07-29). Only the -ml-48 overlap itself (see the photo below) is gated to lg:, since that trick needs more absolute room than Tablet has to not look cramped. */} {/* Large serif statement — width-constrained as per design */}

Ich glaube nicht, dass Menschen mehr Disziplin brauchen.

{/* Quote row: script quote / divider / author bio — side-by-side only from lg: (1024px), a deliberate exception to the site's sm: (640px) structural consolidation: quote + divider + the whitespace-nowrap bio ("Gründer von einfach produktiv.") together need more room than the sm:-anchored text column has through the whole 640-1023px range, independent of the outer text/image ratio above. Stacked with a horizontal divider through that whole range instead, side-by-side (vertical divider) only once there's real room at lg:. */}
{/* Caveat script text with signature positioned below */}

Ich glaube,

sie brauchen 

weniger Reibung.

{/* Signature underline — hand-drawn organic stroke, sits just below the three Caveat lines (3 × 32px = 96px) */}
{/* Divider — horizontal full-width line below lg:, vertical gold line beside the author bio from lg: */}

Björn.

Führungskraft.

Familienmensch.

Gründer von einfach produktiv.

{/* Author photo — gets the wider 1.4 share from sm: up already (see the text column's own comment above); plain, no overlap at Tablet. Overlaps the text column via -ml-48 only from lg+, where there's real absolute room for the photo to bleed under it without looking cramped. Plain full-width photo below the text on true Mobile. */} Björn {/* Left gradient — from sm: up, not just lg:. Even without the -ml-48 overlap at Tablet, the photo sits directly against the dark text column with no transition, reading as a hard vertical seam (reported 2026-07-29). A narrower fade (w-16) softens just that seam at Tablet; widens to w-72 at lg: to also cover the deeper -ml-48 overlap once that kicks in. */}
); }