NotFoundPage
Options to configure report of broken link on not found page.
Option | Type | Description |
---|---|---|
content | ReactNode | Content of the link. Default: "Submit an issue about broken link" |
labels | string | Labels that can be added to the new created issue. Default: "bug" |
children | ReactNode | Top content of page. Default: <H1>404: Page Not Found</H1> |
app/not-found.jsx
import { NotFoundPage } from 'nextra-theme-docs'
export default function NotFound() {
return (
<NotFoundPage content="Submit an issue" labels="broken-link">
<h1>The page is not found</h1>
</NotFoundPage>
)
}
Last updated on