- Responsive navigation with mobile hamburger menu - Reactive forms with real-time validation on profile page - Toast service for success/error/warning messages - HTTP error interceptor for 401/403/500 handling - Loading states with spinner animations
8 lines
173 B
HTML
8 lines
173 B
HTML
@if (!isDashboardRoute) {
|
|
<app-header></app-header>
|
|
}
|
|
<main class="min-h-[calc(100vh-4rem)] bg-gray-50">
|
|
<router-outlet></router-outlet>
|
|
</main>
|
|
<app-toast></app-toast>
|