feat: add role user modules and shared table updates

This commit is contained in:
2026-06-15 20:07:06 +05:30
parent 8d4ff49633
commit bea47d29d5
21 changed files with 1245 additions and 133 deletions

View File

@@ -1,6 +1,6 @@
'use client';
import * as React from 'react';
import { LayoutDashboard, Plus, Layers, Package, Milestone } from 'lucide-react';
import { LayoutDashboard, Plus, Layers, Package, Milestone, ShieldCheck, Users } from 'lucide-react';
import { NavUser } from '@/components/nav-user';
import { ROUTES } from '@/utils/routes';
import {
@@ -47,6 +47,16 @@ const data = {
url: ROUTES.CHAINAGE,
icon: Milestone,
},
{
title: 'Roles',
url: ROUTES.ROLES,
icon: ShieldCheck,
},
{
title: 'Users',
url: ROUTES.USERS,
icon: Users,
},
],
};