import type { ReactNode } from "react"; export function SectionHeading({ children }: { children: ReactNode }) { return (

{children}

); }