// command.jsx — Command Bar / Quick Switcher (overlaid on home)
const CommandScreen = () => (
{/* dimmed home behind */}
{/* command panel */}
{/* Section: Open tabs */}
} title="Style Guide — Figma" hint="figma.com" right="⌘1" />
} title="Roadmap 2024 — Linear" hint="linear.app · 6 issues open" right="⌘2 · ↵" />
} title="ELY Roadmap doc — Notion" hint="notion.so" right="⌘3" />
} title="Roadmap.app · 2024 update" hint="roadmap.app · 1d ago" />
} title="elybrowser/core · roadmap.md" hint="github.com · 3d ago" />
} title="Roadmap planning template" hint="Pinned · Work" />
} title="Switch workspace" hint="Work · Personal · Studio" right="⌘⇧W" />
} title="Open in split view" hint="Beside current tab" right="⌘D" />
} title="Open Settings" hint="Appearance, Sync, Plugins…" right="⌘," />
} title='Ask: "What did we ship in the last roadmap cycle?"' hint="Searches recent tabs, history & docs" right="⌘↵"/>
↑↓ navigate
↵ open
⌘↵ open in split
⇥ filter
Powered by ELY
);
const Kbd = ({ children }) => (
{children}
);
const CmdSection = ({ label, children }) => (
);
const CmdRow = ({ icon, title, hint, right, active, ai }) => (
{active &&
}
{icon}
{right &&
{right}}
);
window.CommandScreen = CommandScreen;