mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
7 lines
284 B
TypeScript
7 lines
284 B
TypeScript
import { HomeLayout } from "fumadocs-ui/layouts/home";
|
|
import type { ReactNode } from "react";
|
|
import { baseOptions } from "@/app/layout.config";
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return <HomeLayout {...baseOptions}>{children}</HomeLayout>;
|
|
}
|