"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; const navigation = [ { title: "Getting Started", items: [ { title: "Introduction", href: "/docs" }, { title: "Installation", href: "/docs/installation" }, { title: "Quick Start", href: "/docs/quick-start" }, { title: "Changelog", href: "/docs/changelog" }, ], }, { title: "Core Concepts", items: [ { title: "Specs", href: "/docs/specs" }, { title: "Schemas", href: "/docs/schemas" }, { title: "Catalog", href: "/docs/catalog" }, { title: "Registry", href: "/docs/registry" }, { title: "Data Binding", href: "/docs/data-binding" }, { title: "Visibility", href: "/docs/visibility" }, { title: "Validation", href: "/docs/validation" }, ], }, { title: "Examples", items: [ { title: "Dashboard", href: "https://github.com/vercel-labs/json-render/tree/main/examples/dashboard", external: true, }, { title: "Remotion", href: "https://github.com/vercel-labs/json-render/tree/main/examples/remotion", external: true, }, ], }, { title: "Guides", items: [ { title: "Custom Schema", href: "/docs/custom-schema" }, { title: "Streaming", href: "/docs/streaming" }, { title: "Code Export", href: "/docs/code-export" }, ], }, { title: "Integrations", items: [ { title: "AI SDK", href: "/docs/ai-sdk" }, { title: "A2UI", href: "/docs/a2ui" }, { title: "Adaptive Cards", href: "/docs/adaptive-cards" }, { title: "AG-UI", href: "/docs/ag-ui" }, { title: "OpenAPI", href: "/docs/openapi" }, ], }, { title: "API Reference", items: [ { title: "@json-render/core", href: "/docs/api/core" }, { title: "@json-render/react", href: "/docs/api/react" }, { title: "@json-render/remotion", href: "/docs/api/remotion" }, { title: "@json-render/codegen", href: "/docs/api/codegen" }, ], }, ]; export function DocsSidebar() { const pathname = usePathname(); return ( ); }