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). md:flex-[1.4_0_0] lg:flex-[1_0_0] — at Tablet the text column got the narrower 1:1.4 share meant for Desktop's overlap layout, leaving it too cramped for the fixed-width statement + quote/bio row. Widened at Tablet (text gets the bigger share, image the smaller one, no overlap yet) and reverted to the original ratio from lg: up, where the overlap trick actually needs the image to have more room. */} {/* 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 from lg: (was md:) — even with the text column's wider Tablet share above, quote + divider + the whitespace-nowrap bio ("Gründer von einfach-produktiv.") together still needed more room than Tablet's ~384px column has. Stacked with a horizontal divider through the whole Tablet 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 — overlaps the text column via -ml-48 from lg+ only (that overlap trick has nothing to blend into once stacked, and at Tablet it would eat back into the extra width the text column above just gained); plain full-width photo below the text on Mobile, plain side-by-side (no overlap) at Tablet. */} Björn {/* Left gradient: wide enough to cover the text-column overlap — lg+ only */}
); }