mirror of
https://github.com/Dokploy/website.git
synced 2026-06-15 20:25:25 +02:00
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
import { baseOptions } from "@/app/layout.config";
|
|
import { HomeLayout } from "fumadocs-ui/layouts/home";
|
|
import type { ReactNode } from "react";
|
|
|
|
export default function Layout({
|
|
children,
|
|
}: {
|
|
children: ReactNode;
|
|
}): React.ReactElement {
|
|
return <HomeLayout {...baseOptions}>{children}</HomeLayout>;
|
|
}
|