This commit is contained in:
pradeepkumar
2026-01-24 03:33:48 +05:30
parent 7b8b43f998
commit 909c22dc45
11 changed files with 2246 additions and 7 deletions

View File

@@ -32,6 +32,34 @@ const menuItems = [
</svg>
),
},
{
name: 'Agent Types',
href: '/dashboard/agent-types',
icon: (
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
/>
</svg>
),
},
{
name: 'Profile Sections',
href: '/dashboard/profile-sections',
icon: (
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M4 6h16M4 10h16M4 14h16M4 18h16"
/>
</svg>
),
},
];
export default function Sidebar() {