mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-11-09 13:39:49 +00:00
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>;
|
|
}
|