type Props = { className?: string; children: React.ReactNode; title: string; }; export function PageRootSection({ className, children, title }: Props) { return (

{title}

{children}
); }