From 00a8e49b285d9d0ae4f39eb6881b7d344f56d4d5 Mon Sep 17 00:00:00 2001 From: NotII <46204250+NotII@users.noreply.github.com> Date: Sat, 8 Mar 2025 05:36:14 +0000 Subject: [PATCH] Update page.tsx --- app/dashboard/chats/page.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/dashboard/chats/page.tsx b/app/dashboard/chats/page.tsx index ed72af9..4a99598 100644 --- a/app/dashboard/chats/page.tsx +++ b/app/dashboard/chats/page.tsx @@ -5,6 +5,12 @@ import { useRouter } from "next/navigation"; import ChatTable from "@/components/dashboard/ChatTable"; import Dashboard from "@/components/dashboard/dashboard"; import { MessageCircle } from "lucide-react"; +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Customer Chats | Ember Market", + description: "Manage your customer conversations", +}; export default function ChatsPage() { const router = useRouter();