// ============================================================ // ESTUDIO RETÓRICA · Logo real // ============================================================ const getRetoricaAssetUrl = (assetPath = '') => { const normalized = String(assetPath || '').replace(/^\/+/, ''); const baseTag = document.querySelector('base'); const baseHref = baseTag?.getAttribute('href') || '/'; return new URL(normalized, window.location.origin + baseHref).toString(); }; const RetoricaLogo = ({ size = 220, inverse = false, markOnly = false }) => { const src = getRetoricaAssetUrl('assets/retorica-logo.png'); if (markOnly) { return ( Retórica ); } return ( Retórica ); }; Object.assign(window, { RetoricaLogo, getRetoricaAssetUrl });