import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
import Link from "next/link";
/**
* Shared layout configurations
*
* you can configure layouts individually from:
* Home Layout: app/(home)/layout.tsx
* Docs Layout: app/docs/layout.tsx
*/
export const Logo = () => {
return (
);
};
export const baseOptions: BaseLayoutProps = {
nav: {
// title: "Dokploy",
children: (
Dokploy
),
},
links: [
{
text: "Documentation",
url: "/docs",
active: "nested-url",
},
],
};