2023-06-15 11:31:03 +04:00
|
|
|
import { nanoid } from '@/lib/utils'
|
2023-06-11 00:23:23 +04:00
|
|
|
import { Chat } from '@/components/chat'
|
2023-05-19 12:33:56 -04:00
|
|
|
|
2023-06-15 11:31:03 +04:00
|
|
|
export default function IndexPage() {
|
|
|
|
|
const id = nanoid()
|
|
|
|
|
|
2023-06-15 16:07:03 +04:00
|
|
|
return <Chat id={id} />
|
2023-05-19 12:33:56 -04:00
|
|
|
}
|