Make the app title a clickable link to / so users can return to the image grid from any sub-page without the browser back button. Change the sign-out destination from /login to / since the grid is publicly accessible and avoids unnecessary friction post-logout. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
588 B
588 B
Tasks: Header Navigation & Sign-Out Destination
Phase 1: Tests (TDD — write first)
- T001 Add component tests for header title routerLink to
/and sign-out navigation to/inui/src/app/app.component.spec.ts
Phase 2: Implementation
- T002 Wrap the
.app-namespan in arouterLink="/"anchor inui/src/app/app.component.ts - T003 Change
onLogout()navigation target from/loginto/inui/src/app/app.component.ts
Phase 3: Validation
- T004 Run
ng lintinui/— zero violations - T005 Run
ng buildinui/— zero errors