* changed to new sidebar across projects except resources * finalize multi sidebar support * clean up * remove redundant property * small changes * fixes * generate * fix error * fix initial open
17 lines
495 B
TypeScript
17 lines
495 B
TypeScript
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
import { TightLayout } from "docs-ui"
|
|
import NotFoundContent from "./_not-found.mdx"
|
|
import Providers from "../providers"
|
|
import Footer from "../components/Footer"
|
|
|
|
const NotFoundPage = () => {
|
|
return (
|
|
<TightLayout footerComponent={<Footer />} ProvidersComponent={Providers}>
|
|
{/* @ts-ignore React v19 doesn't recognize MDX import as component */}
|
|
<NotFoundContent />
|
|
</TightLayout>
|
|
)
|
|
}
|
|
|
|
export default NotFoundPage
|