mirror of
https://github.com/documenso/documenso.git
synced 2026-07-25 09:25:08 +10:00
7 lines
239 B
TypeScript
7 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>;
|
|
}
|