We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b49786 commit c670c35Copy full SHA for c670c35
2 files changed
src/app/docs/layout.tsx
@@ -1,8 +1,9 @@
1
import { source } from '@/lib/source';
2
-import { DocsLayout } from 'fumadocs-ui/layouts/docs';
+import { DocsLayout } from 'fumadocs-ui/layouts/notebook';
3
import { baseOptions } from '@/lib/layout.shared';
4
+import type { ReactNode } from 'react';
5
-export default function Layout({ children }: LayoutProps<'/docs'>) {
6
+export default function Layout({ children }: { children: ReactNode }) {
7
return (
8
<DocsLayout
9
tree={source.pageTree}
src/lib/layout.shared.tsx
@@ -3,7 +3,7 @@ import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
export function baseOptions(): BaseLayoutProps {
return {
nav: {
- title: 'BasisVR',
+ title: 'BasisVR Docs',
transparentMode: 'top',
},
links: [
0 commit comments