feat: add routes for Verification, Privacy, and Terms of Service components
This commit is contained in:
parent
173dd2d4c9
commit
4344d4fa42
@ -3,6 +3,9 @@ import {StartComponent} from "./page/onboarding/start/start.component";
|
||||
import {NotificationComponent} from "./page/onboarding/notification/notification.component";
|
||||
import {RegistrationComponent} from "./page/onboarding/registration/registration.component";
|
||||
import {LoginComponent} from "./page/login/login.component";
|
||||
import {VerificationComponent} from "./page/onboarding/verification/verification.component";
|
||||
import {PrivacyComponent} from "./page/privacy/privacy.component";
|
||||
import {TermsOfServiceComponent} from "./page/terms-of-service/terms-of-service.component";
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
@ -10,13 +13,25 @@ export const routes: Routes = [
|
||||
component: StartComponent,
|
||||
},
|
||||
{
|
||||
path: 'onboarding/notification',
|
||||
path: 'onboarding/notifications',
|
||||
component: NotificationComponent,
|
||||
},
|
||||
{
|
||||
path: 'onboarding/registration',
|
||||
component: RegistrationComponent,
|
||||
},
|
||||
{
|
||||
path: 'onboarding/verification',
|
||||
component: VerificationComponent,
|
||||
},
|
||||
{
|
||||
path: 'privacy',
|
||||
component: PrivacyComponent,
|
||||
},
|
||||
{
|
||||
path: 'terms',
|
||||
component: TermsOfServiceComponent,
|
||||
},
|
||||
{
|
||||
path: 'login',
|
||||
component: LoginComponent,
|
||||
|
Loading…
x
Reference in New Issue
Block a user