"use client"; import { type ReactNode } from "react"; type Props = { id?: string; title: string; children: ReactNode; }; export default function Section({ id, title, children }: Props) { return (

{title}

{children}
); }