// Dom Papança Logo SVG Component function Logo({ size = 60, light = false }) { const gold = light ? '#f5e6c8' : '#c8922a'; const cream = light ? '#ffffff' : '#f5e6c8'; const dark = light ? '#1a0e05' : '#1a0e05'; return ( {/* Decorative top arc text band */} IGUARIAS COM ALMA {/* Main text */} Dom Papança {/* Bottom arc text */} IGUARIAS COM ALMA {/* Decorative lines */} ); } Object.assign(window, { Logo });