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