16 lines
425 B
TypeScript
16 lines
425 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { LandingPageComponent } from './landing-page/landing-page.component';
|
|
import { HomepageComponent } from './homepage/homepage/homepage.component';
|
|
import { authGuard } from './auth.guard';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: LandingPageComponent,
|
|
},
|
|
{
|
|
path: 'home',
|
|
component: HomepageComponent,
|
|
canActivate: [authGuard],
|
|
},
|
|
];
|