Initialize a Next.js-based documentation site using Fumadocs framework to provide comprehensive guides for all GPUI components. The site includes getting started guides, API references, and documentation for 40+ components including Button, Input, Table, Tree, Chart, and more. --------- Co-authored-by: Jason Lee <huacnlee@gmail.com>
6 lines
239 B
TypeScript
6 lines
239 B
TypeScript
import { HomeLayout } from 'fumadocs-ui/layouts/home';
|
|
import { baseOptions } from '@/lib/layout.shared';
|
|
|
|
export default function Layout({ children }: LayoutProps<'/'>) {
|
|
return <HomeLayout {...baseOptions()}>{children}</HomeLayout>;
|
|
}
|