import { Component } from "solid-js" import { Loader2 } from "lucide-solid" const codeNomadIcon = new URL("../images/CodeNomad-Icon.png", import.meta.url).href interface EmptyStateProps { onSelectFolder: () => void isLoading?: boolean } const EmptyState: Component = (props) => { return (
CodeNomad logo

CodeNomad

Select a folder to start coding with AI

Keyboard shortcut: {navigator.platform.includes("Mac") ? "Cmd" : "Ctrl"}+N

Examples: ~/projects/my-app

You can have multiple instances of the same folder

) } export default EmptyState