import { type ReactNode } from 'react'; interface Props { heading: string; children: ReactNode; } export function LegalSection({ heading, children }: Props) { return (

{heading}

{children}
); }