Add AI chat feature
This commit is contained in:
parent
80056b3728
commit
6a5041be43
15 changed files with 1259 additions and 2 deletions
11
app/chat/page.tsx
Normal file
11
app/chat/page.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { Chat } from "@/components/chat";
|
||||
import { Container } from "@/components/container";
|
||||
import { Prose } from "@/components/prose";
|
||||
|
||||
export default function ChatPage() {
|
||||
return (
|
||||
<Container>
|
||||
<Chat />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue