mirror of
https://github.com/Dokploy/website.git
synced 2026-06-16 04:35:26 +02:00
- Standardized import statements across various components to use double quotes for consistency. - Updated component files to ensure proper formatting and adherence to coding standards. - Enhanced overall code readability by aligning code structure and improving comment clarity. - Made minor adjustments to ensure all components follow the same coding conventions, improving maintainability.
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
import { baseOptions } from "@/lib/layout.shared";
|
|
import { source } from "@/lib/source";
|
|
import { DocsLayout } from "fumadocs-ui/layouts/docs";
|
|
|
|
export default function Layout({ children }: LayoutProps<"/docs">) {
|
|
return (
|
|
<DocsLayout tree={source.pageTree} {...baseOptions()}>
|
|
{children}
|
|
</DocsLayout>
|
|
);
|
|
}
|