aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-03-22 00:24:09 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-03-22 00:24:09 -0400
commit69e79cc423110ea7df3d960f95e612934d256dd8 (patch)
treea5b0fc2d4704d6168e5e8563eee2827e27186cbb /ufund-ui/src/app/app-routing.module.ts
parent0be2b5868bdda04146a22ec81596dbbb81922360 (diff)
downloadJellySolutions-69e79cc423110ea7df3d960f95e612934d256dd8.tar.gz
JellySolutions-69e79cc423110ea7df3d960f95e612934d256dd8.tar.bz2
JellySolutions-69e79cc423110ea7df3d960f95e612934d256dd8.zip
Create basic home page
Diffstat (limited to 'ufund-ui/src/app/app-routing.module.ts')
-rw-r--r--ufund-ui/src/app/app-routing.module.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/ufund-ui/src/app/app-routing.module.ts b/ufund-ui/src/app/app-routing.module.ts
index 4b76654..c83db8a 100644
--- a/ufund-ui/src/app/app-routing.module.ts
+++ b/ufund-ui/src/app/app-routing.module.ts
@@ -8,12 +8,12 @@ import {FundingBasketComponent} from './components/funding-basket/funding-basket
import {NeedPageComponent} from './components/need-page/need-page.component';
const routes: Routes = [
- {path: '', component: HomePageComponent},
- {path: 'login', component: LoginComponent},
- {path: 'cupboard', component: CupboardComponent},
- {path: 'dashboard', component: DashboardComponent},
- {path: 'basket', component: FundingBasketComponent},
- {path: 'need/:id', component: NeedPageComponent}
+ { path: '', component: HomePageComponent, title: "Home | JS" },
+ { path: 'login', component: LoginComponent, title: "Login | JS" },
+ { path: 'cupboard', component: CupboardComponent, title: "Cupboard | JS" },
+ { path: 'dashboard', component: DashboardComponent, title: "Dashboard | JS" },
+ { path: 'basket', component: FundingBasketComponent, title: "Basket | JS" },
+ { path: 'need/:id', component: NeedPageComponent, title: "Need | JS" }
];
@NgModule({