/** * Magazine spread numbering — "01 / 05" with an eyebrow label. * Sits in the corner of a section per editorial convention. * * CUSTOMIZATION HOOK — CONTENT: index / total / label. */ export default function SectionLabel({ index, total = 5, label, className = "", }: { index: number; total?: number; label: string; className?: string; }) { const pad = (n: number) => String(n).padStart(2, "0"); return (
{pad(index)} / {pad(total)} {label}
); }