This commit is contained in:
NotII
2025-03-03 21:20:58 +00:00
parent f5382d82f6
commit 2fafcb868a
7 changed files with 48 additions and 35 deletions

View File

@@ -1,6 +1,7 @@
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",
@@ -9,10 +10,12 @@ export const metadata: Metadata = {
export default function NewChatPage() {
return (
<div className="container mx-auto py-6 space-y-6">
<div className="grid grid-cols-1 gap-6">
<NewChatForm />
<Dashboard>
<div className="container mx-auto py-6 space-y-6">
<div className="grid grid-cols-1 gap-6">
<NewChatForm />
</div>
</div>
</div>
</Dashboard>
);
}