10 lines
179 B
TypeScript

import { ChatInterface } from "@/components/chat-interface"
export default function Home() {
return (
<main className="bg-black">
<ChatInterface />
</main>
)
}