add iam module usermanagment ui

This commit is contained in:
mengstabketemaw
2026-06-02 16:06:51 +03:00
parent df745bbc41
commit 798beb0e7a
12 changed files with 6061 additions and 62 deletions

View File

@@ -1,10 +1,17 @@
import { NavLink, Stack } from '@mantine/core';
import { IconDashboard, IconBox } from '@tabler/icons-react';
import {
IconDashboard,
IconBox,
IconUsers,
IconClipboardList,
} from '@tabler/icons-react';
import { useNavigate, useLocation } from 'react-router-dom';
const NAV_ITEMS = [
{ label: 'Dashboard', icon: IconDashboard, path: '/dashboard' },
{ label: 'Items', icon: IconBox, path: '/items' },
{ label: 'User Management', icon: IconUsers, path: '/users' },
{ label: 'Audit Log', icon: IconClipboardList, path: '/audit-log' },
];
export function AppSidebar() {