import { Bot, FolderGit2 } from "lucide-react"; interface EmptyStateProps { readonly onConnectRepository: () => void; readonly busy: boolean; readonly repository: string; readonly onRepositoryChange: (value: string) => void; } export const EmptyState = ({ busy, onConnectRepository, onRepositoryChange, repository, }: EmptyStateProps) => (

Connect a project to begin

Import a repository to start the Work OS loop. Turn a clear outcome into a Work Unit that Zopu can start, verify, and review.

{ event.preventDefault(); onConnectRepository(); }} > onRepositoryChange(event.target.value)} placeholder="https://github.com/owner/repo" required value={repository} />
);