/** * Stylized whale mark — a nod to DeepSeek's cetacean motif. * Kept minimal and geometric so it reads as a wordmark accent, not an illustration. */ export function Whale({ size = 22, className = "" }: { size?: number; className?: string }) { return ( {/* body */} {/* tail flukes */} {/* eye */} {/* spout */} ); }