Initial commit
This commit is contained in:
commit
d1c74c861e
57 changed files with 4568 additions and 0 deletions
18
ui/components/EmptyChat.tsx
Normal file
18
ui/components/EmptyChat.tsx
Normal file
|
@ -0,0 +1,18 @@
|
|||
import EmptyChatMessageInput from './EmptyChatMessageInput';
|
||||
|
||||
const EmptyChat = ({
|
||||
sendMessage,
|
||||
}: {
|
||||
sendMessage: (message: string) => void;
|
||||
}) => {
|
||||
return (
|
||||
<div className="flex flex-col items-center justify-center min-h-screen max-w-screen-sm mx-auto p-2 space-y-8">
|
||||
<h2 className="text-white/70 text-3xl font-medium -mt-8">
|
||||
Research begins here.
|
||||
</h2>
|
||||
<EmptyChatMessageInput sendMessage={sendMessage} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default EmptyChat;
|
Loading…
Add table
Add a link
Reference in a new issue