import SectionLabel from "@/components/SectionLabel"; import Reveal from "@/components/Reveal"; /** * Editorial page masthead. Korean serif headline + huge English display * word, with magazine "NN / 05" spread numbering. * * CUSTOMIZATION HOOK — CONTENT: ko / en / display / description / index. */ export default function PageHeader({ ko, en, display, description, index, }: { ko: string; en: string; display?: string; description?: string; index: number; }) { return (

{ko}

{/* When a custom `display` word is provided, render it at the full magazine scale. Otherwise fall back to `en` at the smaller `display-sm` scale so long words like "Standardization" never overflow the col-span-8 column. See LAYOUT_AUDIT #6 + #10. */}

{display ?? en}

{description && (

{description}

)}
); }