// Same visual language as RichText.tsx's Quote converter (Caveat script + // brand divider) — extracted here so PageBlocks.tsx (and any future hand- // written page) can reuse it instead of each page defining its own copy, // which is what /lebensuhr, /3x3-system, and /ueber-mich each did before // this existed. export function Quote({ children }: { children: React.ReactNode }) { return (

{children}

); }