import type { ReactNode } from "react"; type InfoSectionProps = { title: string; children: ReactNode; }; export default function InfoSection({ title, children }: InfoSectionProps) { return (