11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
import { nanoid } from '@/lib/utils'
|
|
import { Chat } from '@/components/chat'
|
|
|
|
// export const runtime = 'edge'
|
|
export const preferredRegion = 'home'
|
|
|
|
export default function IndexPage() {
|
|
const id = nanoid()
|
|
|
|
return <Chat id={id} />
|
|
}
|