import { ModalPanel } from './ModalPanel'; interface HelpPanelProps { open: boolean; onClose: () => void; } export function HelpPanel({ open, onClose }: HelpPanelProps) { if (!open) return null; return (

Toolbox guide

Choose and arrange your tools

Open: click anywhere on a tool tile that is not a control.

Details: use the light bulb to review privacy, requirements, categories, tags, version, and source before opening.

Filter: search, choose a category, or select a tag from a tool's information panel. Select the tag again to clear it.

Arrange: pin frequently used tools into their own section, then drag the grip to reorder. The grip also supports keyboard dragging with Space, arrow keys, and Escape.

); }