import { cn } from "@/lib/utils"; import { Eyebrow } from "./Eyebrow"; import { Reveal } from "./Reveal"; /** * Centered section intro — the original's signature: a quiet "/ LABEL" mono * kicker over a large heading, centered, used on only a few key sections (fit, * eyetracking, press). Not a per-section eyebrow; reach for it deliberately. */ export function SectionKicker({ kicker, children, className, headingClassName, }: { kicker: string; /** The heading. Supports inline for the two-tone treatment. */ children: React.ReactNode; className?: string; headingClassName?: string; }) { return ( {kicker}

{children}

); }