Page
A page in your documentation
Page is the base element of a documentation, it includes Table of contents, Footer, and Breadcrumb.
Usage
Body
It applies the Typography styles, wrap your content inside.
You can use this component without <DocsPage />
.
Configurations
Full Mode
To extend the page to fill up all available space, pass full
to the page component.
This will force TOC to be shown as a popover.
Table of Contents
An overview of all the headings in your document.
It requires an array of headings. For Markdown and MDX documents, You can obtain it using the TOC Utility. Content sources like Fumadocs MDX offer this out-of-the-box.
Options
Customise or disable TOC from your documentation with the tableOfContent
option.
Prop | Type | Default |
---|---|---|
footer | ReactNode | - |
header | ReactNode | - |
enabled | boolean | - |
component | ReactNode | - |
Popover Mode
On smaller devices, it is shown on a popover instead.
Customise it with the tableOfContentPopover
option.
Prop | Type | Default |
---|---|---|
footer | ReactNode | - |
header | ReactNode | - |
enabled | boolean | - |
component | ReactNode | - |
Last Updated Time
Since you might have different version controls (e.g. Github) or it's from remote sources like Sanity, Fumadocs UI doesn't display the last updated time by default.
For Github hosted documents, you can use the Git Last Modified utility.
Footer
Footer is a navigation element that has two buttons to jump to the next and previous pages. When not specified, it shows the neighbour pages found from page tree.
Customise the footer with the footer
option.
Prop | Type | Default |
---|---|---|
enabled | boolean | - |
component | ReactNode | - |
items | { previous?: { name: string; url: string; } | undefined; next?: { name: string; url: string; } | undefined; } | - |
Breadcrumb
A navigation element, shown only when user is navigating in folders.
Prop | Type | Default |
---|---|---|
enabled | boolean | - |
component | ReactNode | - |
full | boolean | false |
includeRoot | boolean | { url: string; } | false |
includeSeparator | boolean | false |
MDX Page
In conjunction of Fumadocs MDX, you may create a page.mdx
file and add the following.
This creates a page with MDX, with proper typography styles applied.
Last updated on