Improve sidebar, new chat, and share dialog (#190)
This commit is contained in:
parent
35e83dc87e
commit
be90a40427
23 changed files with 598 additions and 217 deletions
8
app/(chat)/page.tsx
Normal file
8
app/(chat)/page.tsx
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { nanoid } from '@/lib/utils'
|
||||
import { Chat } from '@/components/chat'
|
||||
|
||||
export default function IndexPage() {
|
||||
const id = nanoid()
|
||||
|
||||
return <Chat id={id} />
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue