Merge branch 'main' into feat/stripe
This commit is contained in:
commit
13dfc3cf5b
13 changed files with 437 additions and 48 deletions
|
@ -1,17 +1,17 @@
|
|||
import { Routes } from '@angular/router';
|
||||
import { LandingPageComponent } from './landing-page/landing-page.component';
|
||||
import { HomepageComponent } from './homepage/homepage/homepage.component';
|
||||
import { LandingComponent } from './feature/landing/landing.component';
|
||||
import { HomeComponent } from './feature/home/home.component';
|
||||
import { authGuard } from './auth.guard';
|
||||
import { DepositComponent } from './deposit/deposit.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: LandingPageComponent,
|
||||
component: LandingComponent,
|
||||
},
|
||||
{
|
||||
path: 'home',
|
||||
component: HomepageComponent,
|
||||
component: HomeComponent,
|
||||
canActivate: [authGuard],
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue