import { SECTION_HEADERS } from "@/lib/labels" export function SectionHeader({ section }: { section: string }) { const info = SECTION_HEADERS[section] return (

{info?.title ?? section}

{info?.subtitle}

) }