mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
e9e6fbdd85
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>
12 lines
340 B
TypeScript
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} />,
|
|
},
|
|
}
|