// Icons + the Socializare S-mark (drawn from primitives — two split circles) const ArrowRight = ({ size = 14, stroke = 1.6 }) => ; const ArrowDown = ({ size = 14 }) => ; const Plus = ({ size = 18 }) => ; // The S-mark, redrawn with SVG so it scales crisp. // Two semicircle wedges that interlock — top indigo facing right, bottom pink facing left. const SMark = ({ size = 64, indigo = 'var(--indigo)', pink = 'var(--pink)' }) => {/* top half: indigo half-disc opening at bottom-right */} {/* bottom half: pink half-disc opening at top-left */} {/* dot accents */} ; // Decorative S-shape used as a background motif — uses logo png. const SLogoImg = ({ size = 64, className = "" }) => Socializare; window.Icons = { ArrowRight, ArrowDown, Plus, SMark, SLogoImg };