import React from 'react'; import { useTranslation } from 'react-i18next'; import type { SetupStepProps } from '../SetupWizard'; export const TeamSetupStep: React.FC = () => { const { t } = useTranslation(); return (

{t('setup_wizard:why_this_matters', 'Why This Matters')}

{t('setup_wizard:team.why', 'Adding team members allows you to assign tasks, track who does what, and give everyone the tools they need to work efficiently.')}

👥

{t('setup_wizard:team.placeholder_title', 'Team Management')}

{t('setup_wizard:team.placeholder_desc', 'This feature will be implemented in Phase 3')}

{t('setup_wizard:team.optional', 'This step is optional')}

); };