const { Button } = window.PilatesLifeStudioDesignSystem_f49721; // Renderiza el texto legal real del estudio (ver LEGAL_CONTENT en data.jsx). Antes estos // links del footer salĂ­an al sitio antiguo (studiopilateslife.com); ahora quedan dentro // del sitio nuevo. function BloqueLegal({ bloque, i }) { if (bloque.tipo === 'h3') { return

{bloque.texto}

; } if (bloque.tipo === 'p-enlace') { return (

{bloque.pre} {bloque.url} {bloque.post}

); } return

{bloque.texto}

; } function LegalPage({ id, onNavigate }) { const entrada = LEGAL.find(l => l.id === id) || LEGAL[0]; const contenido = LEGAL_CONTENT[id] || []; return (
Legal

{entrada.label}

{contenido.map((bloque, i) => )}
); } Object.assign(window, { LegalPage });