2023-09-29 22:51:54 +00:00
|
|
|
import { nanoid } from '@/lib/utils'
|
|
|
|
|
import { Chat } from '@/components/chat'
|
2023-10-24 15:36:08 +00:00
|
|
|
import { Metadata } from 'next'
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'Playground',
|
|
|
|
|
}
|
2023-09-29 22:51:54 +00:00
|
|
|
|
|
|
|
|
export default function IndexPage() {
|
|
|
|
|
const id = nanoid()
|
|
|
|
|
|
|
|
|
|
return <Chat id={id} />
|
|
|
|
|
}
|