refactor: update sidebar navigation sections for clarity

- Added Notifications and Project Settings as standalone sections in the sidebar without labels for visual separation.
- Removed the previous 'Other' label to enhance the organization of navigation items.
This commit is contained in:
webdevcody
2026-01-16 18:49:35 -05:00
parent 3bf9dbd43a
commit 14559354dd

View File

@@ -206,9 +206,9 @@ export function useNavigation({
});
}
// Add Other section with notifications
// Add Notifications and Project Settings as a standalone section (no label for visual separation)
sections.push({
label: 'Other',
label: '',
items: [
{
id: 'notifications',
@@ -217,13 +217,6 @@ export function useNavigation({
shortcut: shortcuts.notifications,
count: unreadNotificationsCount,
},
],
});
// Add Project Settings as a standalone section (no label for visual separation)
sections.push({
label: '',
items: [
{
id: 'project-settings',
label: 'Project Settings',