Files
copilotkit__copilotkit/docs/app/layout.config.tsx
John Rae-Grant e9e6fbdd85 Docs Rebranding with fixes (#2982)
Co-authored-by: Max Korp <maxkorp@8bytealchemy.com>
Co-authored-by: Santiago Cubino <scubino@litebox.ai>
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-08 14:28:26 -08:00

12 lines
340 B
TypeScript

import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"
// Components
import Navbar from "@/components/layout/navbar"
import { source } from "@/app/source"
export const baseOptions: BaseLayoutProps = {
githubUrl: "https://github.com/copilotkit/copilotkit",
nav: {
component: <Navbar pageTree={source.pageTree} />,
},
}