import React from "react"; import { Metadata } from "next"; import NewChatForm from "@/components/dashboard/NewChatForm"; export const metadata: Metadata = { title: "Start New Chat", description: "Begin a new conversation with a customer", }; export default function NewChatPage() { return (
); }