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.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 (