import { cn } from '@/lib/utils' import { ExternalLink } from './external-link' import { ArrowRight } from 'lucide-react' import { useChatStore } from '@/hooks/use-chat-store' import { Button } from '@/components/ui/button' import { OpenAI } from '@/components/icons' const exampleMessages = [ { heading: 'Explain technical concepts', message: `What is a "serverless function"?` }, { heading: 'Summarize an article', message: 'Summarize the following article for a 2nd grader: \n' }, { heading: 'Draft an email', message: `Draft an email to my boss about the following: \n` } ] export function EmptyScreen({ className }: React.ComponentProps<'div'>) { const { setDefaultMessage } = useChatStore() return (
This is an open source AI chatbot app built with{' '}
You can start a conversation here or try the following examples: