/** * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Project: Hilmacorp.ai — Web Platform * File: components/SectionHeading.tsx * Description: Reusable section heading — kicker line, serif display title, optional lead paragraph */ export default function SectionHeading({ kicker, title, lead, as: Tag = "h2", }: { kicker?: string; title: string; lead?: string; as?: "h1" | "h2"; }) { return (
{kicker ? (

{kicker}

) : null} {title} {lead ? (

{lead}

) : null}
); }