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