import { MessageSquarePlus } from "lucide-react"; import { Button } from "@/components/ui/button"; export function EmptyState({ onNewChat, }: { onNewChat: () => void; }) { return (

No chats yet

Start a conversation — your sessions are stored locally on the nanobot workspace and stay available across reloads.

); }