/* Taktume Recruit brand mark variations * Originals — geometric, professional, B2B HR/talent acquisition * Visual DNA: precision, assessment, shortlisting, signal vs noise */ const RecruitMarkA = ({ size = 96 }) => ( // "Signal" — concentric arcs converging to a point (shortlisting) ); const RecruitMarkB = ({ size = 96 }) => ( // "Aperture" — a stylized T inside a precision aperture (assessment lens) {/* aperture blades */} {/* T mark */} ); const RecruitMarkC = ({ size = 96 }) => ( // "Rank" — bars + checkmark hybrid, T crossbar formed by ranking bars {/* ranking bars forming the crossbar of a T */} {/* check / approval tick */} ); const RecruitMarkD = ({ size = 96 }) => ( // "Pipeline" — interconnected nodes funneling, T monogram at center {/* glassy inner panel */} {/* funnel of dots converging */} {/* T monogram */} ); const RecruitMarkE = ({ size = 96 }) => ( // "Compass" — square frame, diagonal needle as T, four cardinal ticks {/* T as monumental serif */} {/* accent dot */} ); const RecruitMarkF = ({ size = 96 }) => ( // "Spectrum" — gradient stack forming a bold T, signal-strength feel. // Build animation: stem segments slide in bottom→top from alternating sides, // then the horizontal bar grows outward from center. Loops. {/* vertical stem segments — render bottom-most first so build reads as bottom→top */} {/* horizontal bar of T — grows outward from center after stem completes */} ); window.RecruitMarkA = RecruitMarkA; window.RecruitMarkB = RecruitMarkB; window.RecruitMarkC = RecruitMarkC; window.RecruitMarkD = RecruitMarkD; window.RecruitMarkE = RecruitMarkE; window.RecruitMarkF = RecruitMarkF;