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) }
];