// team-page.jsx — stub (full version coming soon)
function TeamPage({ theme }) {
  return (
    <div style={{
      flex: 1, display: 'flex', alignItems: 'center', justifyContent: 'center',
      color: theme.inkMute, fontSize: 14, flexDirection: 'column', gap: 12,
    }}>
      <Icon name="user" size={32} color={theme.inkMute}/>
      <div>Team management coming soon.</div>
    </div>
  );
}
Object.assign(window, { TeamPage });
