Update Navbar and useModularNavigation to replace 'BarChart3' icon with 'Store'

- Modify Navbar.vue to import and utilize the 'Store' icon in place of 'BarChart3' for improved visual representation.
- Update useModularNavigation.ts to change the icon for the 'Market Dashboard' from 'BarChart3' to 'Store', ensuring consistency across the application.
This commit is contained in:
padreug 2025-09-05 06:41:53 +02:00
parent dc4da570a7
commit 3cf63ca68e
2 changed files with 5 additions and 5 deletions

View file

@ -74,7 +74,7 @@ export function useModularNavigation() {
items.push({
name: 'Market Dashboard',
href: '/market-dashboard',
icon: 'BarChart3',
icon: 'Store',
requiresAuth: true
})
}
@ -103,4 +103,4 @@ export function useModularNavigation() {
userMenuItems,
isModuleAvailable
}
}
}