938f3bd934
* update next * updated react * update eslint * finish updating eslint * fix content lint errors * fix docs test * fix vale action * fix installation errors
26 lines
710 B
TypeScript
26 lines
710 B
TypeScript
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
import { TightLayout } from "docs-ui"
|
|
import Feedback from "../components/Feedback"
|
|
import EditButton from "../components/EditButton"
|
|
import NotFoundContent from "./_not-found.mdx"
|
|
import Providers from "../providers"
|
|
|
|
const NotFoundPage = () => {
|
|
return (
|
|
<TightLayout
|
|
sidebarProps={{
|
|
expandItems: true,
|
|
}}
|
|
showPagination={true}
|
|
feedbackComponent={<Feedback className="my-2" />}
|
|
editComponent={<EditButton />}
|
|
ProvidersComponent={Providers}
|
|
>
|
|
{/* @ts-ignore React v19 doesn't recognize MDX import as component */}
|
|
<NotFoundContent />
|
|
</TightLayout>
|
|
)
|
|
}
|
|
|
|
export default NotFoundPage
|