import { Button } from '@/components/ui-v2/button' import { ArrowRight } from 'lucide-react' const exampleMessages = [ { heading: 'Why is Nvidia growing rapidly?', message: 'Why is Nvidia growing rapidly?' }, { heading: 'Is the Apple Vision Pro worth buying?', message: 'Is the Apple Vision Pro worth buying?' }, { heading: 'How does the Vercel AI SDK work?', message: 'How does the Vercel AI SDK work?' }, { heading: 'Tesla vs Rivian', message: 'Tesla vs Rivian' } ] export function EmptyScreen({ submitMessage, className }: { submitMessage: (message: string) => void className?: string }) { return (
{exampleMessages.map((message, index) => ( ))}
) }