import { FolderIcon, FolderPlusIcon } from "lucide-react"; import type { SuggestedCollection } from "../../status-model"; import { Button } from "./ui/button"; interface CollectionsEmptyStateProps { suggestedCollections: SuggestedCollection[]; onAddCollection: (path?: string) => void; } export function CollectionsEmptyState({ suggestedCollections, onAddCollection, }: CollectionsEmptyStateProps) { return (

No folders connected yet

Add the notes, docs, or project folders you want GNO to watch. It will start indexing as soon as you connect one.

{suggestedCollections.map((suggestion) => ( ))}
{suggestedCollections.length > 0 && (
{suggestedCollections.map((suggestion) => (
{suggestion.label}
{suggestion.path}

{suggestion.reason}

))}
)}
); }