docs: create providers/ section with dedicated provider pages (#928)

Add dedicated documentation pages for each cloud browser provider:
Browser Use, Browserbase, Browserless, and Kernel (sorted
alphabetically). Uses providers/ path per maintainer feedback.

- Fix Kernel defaults to match source code (KERNEL_HEADLESS=true,
  KERNEL_STEALTH=false) — README had these inverted
- Add Providers section to sidebar navigation
- Simplify cdp-mode cloud providers section to link to new pages

Fixes part of #774

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
mikewong23571
2026-03-19 02:40:33 -05:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 2d37967b7e
commit 2b3c5c26cd
11 changed files with 171 additions and 20 deletions
@@ -0,0 +1,7 @@
import { pageMetadata } from "@/lib/page-metadata";
export const metadata = pageMetadata("providers/browser-use");
export default function Layout({ children }: { children: React.ReactNode }) {
return children;
}