From 724443de1e382fbe6666d6d86400f99f40849785 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Thu, 20 Aug 2026 17:58:32 +0200 Subject: [PATCH] feat(web): route and enable the Inventar nav entry --- apps/web/src/app/app.routes.ts | 7 +++++++ .../layout/side-navigation/side-navigation.component.html | 7 +++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/app.routes.ts b/apps/web/src/app/app.routes.ts index 8a0c082..c441475 100644 --- a/apps/web/src/app/app.routes.ts +++ b/apps/web/src/app/app.routes.ts @@ -28,6 +28,13 @@ export const routes: Routes = [ (module) => module.CombatPageComponent, ), }, + { + path: 'inventory', + loadComponent: () => + import('./features/inventory/inventory-page.component').then( + (module) => module.InventoryPageComponent, + ), + }, ], }, { path: '**', redirectTo: 'world' }, diff --git a/apps/web/src/app/layout/side-navigation/side-navigation.component.html b/apps/web/src/app/layout/side-navigation/side-navigation.component.html index 563ea58..152eadb 100644 --- a/apps/web/src/app/layout/side-navigation/side-navigation.component.html +++ b/apps/web/src/app/layout/side-navigation/side-navigation.component.html @@ -39,9 +39,12 @@