Spaces:
Build error
Build error
File size: 383 Bytes
0702eb8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"use client";
import Header from "@/app/components/header";
import ChatSection from "@/app/components/chat-section";
export default function Chat() {
return (
<main id='main-container' className="flex min-h-screen flex-col items-center gap-10 background-gradient dark:background-gradient-dark md:pt-10 pt-24 px-10">
<Header />
<ChatSection />
</main>
);
}
|