We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64b2478 commit 6d8707fCopy full SHA for 6d8707f
βdocs/app/docs/layout.tsxβ
@@ -4,7 +4,7 @@ import { DocsLayout } from "fumadocs-ui/layouts/docs";
4
5
export default function Layout({ children }: LayoutProps<"/docs">) {
6
return (
7
- <DocsLayout tree={source.pageTree} {...baseOptions()}>
+ <DocsLayout tree={source.pageTree} {...baseOptions()} links={[]}>
8
{children}
9
</DocsLayout>
10
);
βdocs/lib/layout.shared.tsxβ
@@ -13,5 +13,11 @@ export function baseOptions(): BaseLayoutProps {
13
),
14
},
15
githubUrl: "https://github.com/iamyoki/committier",
16
+ links: [
17
+ {
18
+ text: "Documentation",
19
+ url: "/docs",
20
+ },
21
+ ],
22
};
23
}
0 commit comments