* 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
10 lines
497 B
TypeScript
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" },
|
|
];
|