/** * WindowHeader — agent window header with name and color. * * Shows the agent's name and color dot, plus an action-type badge * (MOVE/MISC/CONVERSATION) that is currently unused by callers. * * Architecture: rendered inside AgentWindow. * * Design: the badge branch is prepared for future use; AgentWindow passes * only name and color today. */ export default function WindowHeader({ name, color, actionType }) { const badgeColors = { move: "#2a7de1", misc: "#6b6b78", conversation: "#d4a04a", }; return (