Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { Metadata } from 'next'; import { ChatDashboard } from '@/components/features/admin/support/ChatDashboard'; export const metadata: Metadata = { title: 'Live Chat | Admin', description: 'Manage live chat conversations with customers', }; export default function AdminChatPage() { return ( <div className="space-y-6"> <div> <h1 className="text-2xl font-bold text-gray-900 dark:text-white"> Live Chat </h1> <p className="text-gray-600 dark:text-gray-400"> Manage live chat conversations with customers </p> </div> <ChatDashboard /> </div> ); } |