import { cn } from "@/lib/utils"; import { ExternalLink } from "./external-link"; import { fontMessage } from "@/lib/fonts"; function ExampleBubble({ children }: { children?: React.ReactNode }) { return (

{children}

); } export function EmptyScreen() { return (

Welcome to Next.js Chatbot!

This is an open source AI chatbot app built with{" "} Next.js and{" "} Vercel Postgres . You can start a conversation here or try the following examples:

Explain technical concepts Summarize article Get assistance Draft an email
); }