cmux/web/app/components/docs-nav-items.ts
Lawrence Chen d3cf9335d2
Add browser automation docs page (#622)
* Add browser automation docs page (#594)

Comprehensive reference for all cmux browser subcommands: navigation,
waiting, DOM interaction, inspection, JS eval, state management,
tabs, dialogs, frames, and downloads. Includes common patterns section.

* Remove unnecessary callout from browser automation docs
2026-02-27 00:42:50 -08:00

10 lines
497 B
TypeScript

export const navItems = [
{ title: "Getting Started", href: "/docs/getting-started" },
{ title: "Concepts", href: "/docs/concepts" },
{ title: "Configuration", href: "/docs/configuration" },
{ title: "Keyboard Shortcuts", href: "/docs/keyboard-shortcuts" },
{ title: "API Reference", href: "/docs/api" },
{ title: "Browser Automation", href: "/docs/browser-automation" },
{ title: "Notifications", href: "/docs/notifications" },
{ title: "Changelog", href: "/docs/changelog" },
];