// FtiMind brand mark + wordmark. // // Symbol: a leaf shape (nutrición) whose midrib is a heartbeat pulse line // (deporte). Two-tone, scalable, picks up the parent text color through // `currentColor` so it adapts to light/dark themes. // // Usage: // // symbol only // // text only // // mark + wordmark side by side // // All components are pure presentational — no state, no API calls. const Mark = ({ size = 32, accent = "#5EEAD4" }) => ( ); const Wordmark = ({ size = 18, weight = 600 }) => ( // Two-tone wordmark. "Fti" sólida, "Mind" en text-2 para sugerir IA/asesor. Fti Mind ); const Logo = ({ size = 28, gap = 8, accent }) => (
); window.FtiMindLogo = { Mark, Wordmark, Logo };