diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index 30338f400..51dcaf4f5 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -45,6 +45,13 @@ const routes: Routes = [ (m) => m.PricingPageModule ) }, + { + path: 'register', + loadChildren: () => + import('./pages/register/register-page.module').then( + (m) => m.RegisterPageModule + ) + }, { path: 'resources', loadChildren: () => @@ -55,7 +62,9 @@ const routes: Routes = [ { path: 'start', loadChildren: () => - import('./pages/login/login-page.module').then((m) => m.LoginPageModule) + import('./pages/landing/landing-page.module').then( + (m) => m.LandingPageModule + ) }, { path: 'tools', diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index 33245fb54..b077b1b12 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -12,13 +12,15 @@