import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"; /** * Shared layout configurations * * you can customise layouts individually from: * Home Layout: app/(home)/layout.tsx * Docs Layout: app/docs/layout.tsx */ export function baseOptions(): BaseLayoutProps { return { nav: { title: ( <> GPUI Component ), }, links: [ { text: "Documentation", url: "/docs", active: "nested-url", }, { text: "Components", url: "/docs/components/accordion", }, { text: "GitHub", url: "https://github.com/longbridge/gpui-component", external: true, }, ], }; }