56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import { UseChatHelpers } from 'ai-connector/react'
|
|
|
|
import { Button } from '@/components/ui/button'
|
|
import { ExternalLink } from '@/components/external-link'
|
|
import { IconArrowRight } from '@/components/ui/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({ setInput }: Pick<UseChatHelpers, 'setInput'>) {
|
|
return (
|
|
<div className="mx-auto max-w-2xl px-4">
|
|
<div className="rounded-lg border bg-background p-8">
|
|
<h1 className="mb-2 text-lg font-semibold">
|
|
Welcome to Next.js Chatbot!
|
|
</h1>
|
|
<p className="mb-2 leading-normal text-muted-foreground">
|
|
This is an open source AI chatbot app built with{' '}
|
|
<ExternalLink href="https://nextjs.org">Next.js</ExternalLink> and{' '}
|
|
<ExternalLink href="https://vercel.com/storage/kv">
|
|
Vercel KV
|
|
</ExternalLink>
|
|
.
|
|
</p>
|
|
<p className="leading-normal text-muted-foreground">
|
|
You can start a conversation here or try the following examples:
|
|
</p>
|
|
<div className="mt-4 flex flex-col items-start space-y-2">
|
|
{exampleMessages.map((message, index) => (
|
|
<Button
|
|
key={index}
|
|
variant="link"
|
|
className="h-auto p-0 text-base"
|
|
onClick={() => setInput(message.message)}
|
|
>
|
|
<IconArrowRight className="mr-2 text-muted-foreground" />
|
|
{message.heading}
|
|
</Button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|