/* CodeKid logo — angular brackets with kid mascot glyph */
function CodeKidLogo({ size = 32, showTagline = false, mono = false }) {
const cyan = mono ? '#fff' : 'var(--cyan)';
const purple = mono ? '#fff' : 'var(--purple)';
return (
{/* Mascot mark — stylized kid silhouette inside hex with code brackets */}
{/* Wordmark */}
{'<'}
Code
Kid
{'>'}
{showTagline && (
IA que coloca negócios locais no mapa
)}
);
}
window.CodeKidLogo = CodeKidLogo;