# Routes - `/` → session-dependent redirect - `/auth/login` → `features/auth/login/login.ts` - `/team-select` → `features/team-select/team-select.ts` - `/team/:id/overview` → `features/team/overview/overview.ts`, inside authenticated App Shell - `/team/:id/members` → `features/team/members/members.ts`, inside authenticated App Shell - `/team/:id/cashbox` → `features/team/cashbox/cashbox.ts`, inside authenticated App Shell - `/team/:id/more` → `features/team/more/more.ts`, inside authenticated App Shell - `**` → Not Found Planned routes include registration, forgot/reset password, member detail, penalties, invite, and public alias views. The full router source of truth is `src/app/app.routes.ts`.