added configuration page

This commit is contained in:
mengstabketemaw
2026-06-19 15:24:37 +03:00
parent 4e0a98f814
commit ddd91b6125
7 changed files with 671 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ import {
IconLayoutDashboard,
IconUsers,
IconUser,
IconMap,
IconSettings,
} from '@tabler/icons-react';
import { notify } from '@ema-platform/ui';
import { SUPPORTED_LANGUAGES } from '../i18n/config';
@@ -26,7 +26,7 @@ interface NavItem {
const NAV_ITEMS: NavItem[] = [
{ to: '/dashboard', label: 'Dashboard', icon: IconLayoutDashboard },
{ to: '/um/user-management/dashboard', label: 'User Management', icon: IconUsers },
{ to: '/locations', label: 'Locations', icon: IconMap },
{ to: '/configuration', label: 'Configuration', icon: IconSettings },
{ to: '/profile', label: 'Profile', icon: IconUser },
];