Docs Layout
The layout of documentation
The layout of documentation pages, it includes a sidebar and mobile-only navbar.
It is a server component, you should not reference it in a client component.
Usage
Pass your page tree to the component.
import { DocsLayout } from 'fumadocs-ui/layouts/docs';
import { baseOptions } from '@/app/layout.config';
import type { ReactNode } from 'react';
export default function Layout({ children }: { children: ReactNode }) {
return (
<DocsLayout {...baseOptions} tree={tree}>
{children}
</DocsLayout>
);
}
Prop | Type | Default |
---|---|---|
nav? | Partial<NavOptions> | - |
links? | LinkItemType[] | - |
githubUrl? | string | - |
i18n? | boolean | I18nConfig | false |
searchToggle? | Partial<{ enabled: boolean; components: Partial<{ sm: ReactNode; lg: ReactNode; }>; }> | - |
themeSwitch? | { enabled?: boolean | undefined; component?: ReactNode; mode?: "light-dark" | "light-dark-system" | undefined; } | - |
containerProps? | HTMLAttributes<HTMLDivElement> | - |
sidebar? | (Partial<SidebarOptions> & { enabled?: boolean | undefined; component?: ReactNode; }) | - |
tree | Root | - |
Sidebar
import { DocsLayout } from 'fumadocs-ui/layouts/docs';
<DocsLayout
sidebar={{
enabled: true,
// replace the default sidebar
// component:
}}
/>;
See Sidebar Links for customising sidebar items.
Prop | Type | Default |
---|---|---|
component? | ReactNode | - |
enabled? | boolean | - |
key? | Key | null | - |
ref? | Ref<HTMLElement> | - |
collapsible? | boolean | true |
prefetch? | boolean | true |
defaultOpenLevel? | number | 0 |
banner? | ReactNode | - |
tabs? | false | Option[] | GetSidebarTabsOptions | - |
components? | Partial<SidebarComponents> | - |
footer? | ReactNode | - |
Nav
A mobile-only navbar, we recommend to customise it from baseOptions
.
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
export const baseOptions: BaseLayoutProps = {
githubUrl: 'https://github.com/fuma-nama/fumadocs',
nav: {
title: 'My App',
},
};
Prop | Type | Default |
---|---|---|
transparentMode? | "always" | "top" | "none" | none |
url? | string | '/' |
title? | ReactNode | - |
component? | ReactNode | - |
enabled? | boolean | - |
Transparent Mode
To make the navbar background transparent, you can configure transparent mode.
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
export const baseOptions: BaseLayoutProps = {
nav: {
transparentMode: 'top',
},
};
Mode | Description |
---|---|
always | Always use a transparent background |
top | When at the top of page |
none | Disable transparent background (default) |
Replace Navbar
To replace the navbar in Docs Layout, set nav.component
to your own component.
import { baseOptions } from '@/app/layout.config';
import { DocsLayout } from 'fumadocs-ui/layouts/notebook';
import type { ReactNode } from 'react';
export default function Layout({ children }: { children: ReactNode }) {
return (
<DocsLayout
{...baseOptions}
nav={{
component: <CustomNavbar />,
}}
>
{children}
</DocsLayout>
);
}
Fumadocs uses CSS Variables to share the size of layout components, and fit each layout component into appropriate position.
You need to override --fd-nav-height
to the exact height of your custom navbar, this can be done with a CSS stylesheet (e.g. in global.css
):
:root {
--fd-nav-height: 80px !important;
}
Advanced
Disable Prefetching
By default, it uses the Next.js Link component with prefetch enabled. When the link component appears into the browser viewport, the content (RSC payload) will be prefetched.
On Vercel, this may cause a high usage of serverless functions and Data Cache. It can also hit the limits of some other hosting platforms.
You can disable prefetching to reduce the amount of RSC requests.
import { DocsLayout } from 'fumadocs-ui/layouts/docs';
<DocsLayout sidebar={{ prefetch: false }} />;
How is this guide?