diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-30 16:26:12 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-30 16:26:12 -0400 |
commit | 27b2b418cc330e37f5802a81d678dd27259ee1e0 (patch) | |
tree | 893231478cb132731546ef7eb6b5c94d0c748091 /ufund-ui/src/app/app-routing.module.ts | |
parent | e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9 (diff) | |
parent | c6bbb29f42eaea7d0c8aebdb7b95be0287cbf4f9 (diff) | |
download | JellySolutions-27b2b418cc330e37f5802a81d678dd27259ee1e0.tar.gz JellySolutions-27b2b418cc330e37f5802a81d678dd27259ee1e0.tar.bz2 JellySolutions-27b2b418cc330e37f5802a81d678dd27259ee1e0.zip |
Merge branch 'main' into css
# Conflicts:
# ufund-ui/src/app/app-routing.module.ts
# ufund-ui/src/app/app.module.ts
# ufund-ui/src/app/components/login/login.component.html
Diffstat (limited to 'ufund-ui/src/app/app-routing.module.ts')
-rw-r--r-- | ufund-ui/src/app/app-routing.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ufund-ui/src/app/app-routing.module.ts b/ufund-ui/src/app/app-routing.module.ts index c83db8a..89b6f67 100644 --- a/ufund-ui/src/app/app-routing.module.ts +++ b/ufund-ui/src/app/app-routing.module.ts @@ -6,6 +6,7 @@ import {LoginComponent} from './components/login/login.component'; import {HomePageComponent} from './components/home-page/home-page.component'; import {FundingBasketComponent} from './components/funding-basket/funding-basket.component'; import {NeedPageComponent} from './components/need-page/need-page.component'; +import {SignupComponent} from './components/signup/signup.component'; const routes: Routes = [ { path: '', component: HomePageComponent, title: "Home | JS" }, @@ -13,7 +14,8 @@ const routes: Routes = [ { 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" } + { path: 'need/:id', component: NeedPageComponent, title: "Need | JS" }, + { path: 'signup', component: SignupComponent, title: "Signup | JS" }, ]; @NgModule({ |