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