This commit is contained in:
NotII
2025-03-03 20:24:26 +00:00
parent de6ec3bfaf
commit f5c7994bf7
11 changed files with 827 additions and 110 deletions

View File

@@ -0,0 +1,18 @@
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 (
<div className="container mx-auto py-6 space-y-6">
<div className="grid grid-cols-1 gap-6">
<NewChatForm />
</div>
</div>
);
}