feat: Add admin support chat page and service for managing user conversations.

This commit is contained in:
pradeepkumar
2026-03-05 06:37:19 +05:30
parent 22c9db526d
commit 6e9be5da9e
4 changed files with 460 additions and 0 deletions

View File

@@ -74,6 +74,20 @@ const menuItems = [
</svg>
),
},
{
name: 'Support Chat',
href: '/dashboard/support-chat',
icon: (
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"
/>
</svg>
),
},
];
export default function Sidebar() {