/**
* Envoltorio de página con la estructura EXACTA del tema Django:
* main-page > middle-content > body-content > title-content
.
* Los hijos aportan los bloques `box-content` / `body-box-content`.
*/
export function PageShell({
title,
children,
}: {
title: React.ReactNode
children: React.ReactNode
}) {
return (
)
}