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