-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.routing.ts
More file actions
70 lines (68 loc) · 1.65 KB
/
app.routing.ts
File metadata and controls
70 lines (68 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { Routes } from '@angular/router';
import { NotFoundComponent } from './404.component';
export const routes: Routes = [
{
path: '',
loadChildren: () => import('@valor-software/home-page').then(m => m.MainPageModule)
},
{
path: '404',
component: NotFoundComponent
},
{
path: 'press-release',
loadChildren: () => import('@valor-software/press-release').then(m => m.PressReleaseModule)
},
{
path: 'services',
loadChildren: () => import('@valor-software/services-page').then(m => m.ServicesPageModule)
},
{
path: 'clients',
loadChildren: () => import('@valor-software/for-clients').then(m => m.ForClientsModule)
},
{
path: 'careers',
loadChildren: () => import('@valor-software/careers').then(m => m.CareersModule)
},
{
path: 'articles',
loadChildren: () => import('@valor-software/blog-portfolio').then(m => m.BlogPortfolioModule)
},
{
path: 'projects',
loadChildren: () => import('@valor-software/blog-portfolio').then(m => m.BlogPortfolioModule)
},
{
path: 'privacy-policy',
loadChildren: () => import('@valor-software/privacy-policy-page').then(m => m.PrivacyPolicyPageModule)
},
{
path: 'blog/:handle',
loadChildren: () => import('@valor-software/blog-page').then(m => m.BlogPageModule)
},
{
path: 'all-vacancies',
redirectTo: 'careers'
},
{
path:'approach.html',
redirectTo: 'services'
},
{
path: 'approach',
redirectTo: 'services'
},
{
path: 'careers.html',
redirectTo: 'careers'
},
{
path: 'services.html',
redirectTo: 'services'
},
{
path: '**',
component: NotFoundComponent
}
];