// Logo — two render modes: // - default (`variant="inline"`): horizontal SVG symbol + wordmark, legible at small heights (nav) // - `variant="image"`: real brand JPG (stacked mark+wordmark), ideal for footer/badges at larger sizes const Logo = ({ height = 40, light = false, variant = "inline" }) => { if (variant === "image") { const img = ( Dalla Costa · Contabilidade e Isenções PCD ); if (light) { return (
{img}
); } return
{img}
; } const color = light ? "#fff" : "#001e40"; const sub = light ? "rgba(255,255,255,0.72)" : "#43474f"; return (
{/* Orange ascending arrow (outline) */} {/* Navy ascending arrow (solid) */} {/* Person circle (head + body) */}
DALLA COSTA Isenções PCD · CRC-RS
); }; // Puzzle heart — 4 colors, radial 3D + "Autismo" rainbow underline const PuzzleHeart = ({ size = 180 }) => { return (
{/* Heart split in 4 puzzle pieces */} {/* top-left red */} {/* top-right blue */} {/* bottom-left yellow */} {/* bottom-right green */} {/* tiny puzzle knobs as highlights */}
Autismo
); }; Object.assign(window, { Logo, PuzzleHeart });