From bb033240b12f2318663879ab7b067de397274f50 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Fri, 7 Nov 2025 13:04:59 +0100 Subject: [PATCH] next step --- src/app/app.html | 43 ++++++++++++++++--------------------------- src/app/app.routes.ts | 10 +--------- 2 files changed, 17 insertions(+), 36 deletions(-) diff --git a/src/app/app.html b/src/app/app.html index 80a6012..e7d04c9 100644 --- a/src/app/app.html +++ b/src/app/app.html @@ -13,40 +13,29 @@
- - - + + +
diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 793776c..a784254 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -3,16 +3,8 @@ import {Routes} from '@angular/router'; export const routes: Routes = [ {path: '', pathMatch: 'full', redirectTo: '/welcome'}, {path: 'welcome', loadChildren: () => import('./pages/welcome/welcome.routes').then(m => m.WELCOME_ROUTES)}, - - {path: '', pathMatch: 'full', redirectTo: '/book'}, {path: 'book', loadChildren: () => import('./pages/book/book.routes').then(m => m.BOOK_ROUTES)}, - - {path: '', pathMatch: 'full', redirectTo: '/author'}, {path: 'author', loadChildren: () => import('./pages/author/author.routes').then(m => m.AUTHOR_ROUTES)}, - - {path: '', pathMatch: 'full', redirectTo: '/loan'}, {path: 'loan', loadChildren: () => import('./pages/loan/loan.routes').then(m => m.LOAN_ROUTES)}, - - { path: '', pathMatch: 'full', redirectTo: '/user' }, - { path: 'user', loadChildren: () => import('./pages/user/user.routes').then(m => m.USER_ROUTES) }, + { path: 'user', loadChildren: () => import('./pages/user/user.routes').then(m => m.USER_ROUTES) } ];