Files
website/apps/docs-new/lib/layout.shared.tsx
Mauricio Siu f9bf220bb1 feat: enhance documentation site with new components and styles
- Added new dependencies including @radix-ui/react-dropdown-menu, class-variance-authority, clsx, tailwind-merge, and tw-animate-css.
- Introduced new JSON configuration for components and updated layout with logo and navigation links.
- Created new MDX files for remote server documentation, including setup instructions and security recommendations.
- Updated global CSS to include new styles and themes.
- Removed outdated home layout and page components to streamline the documentation structure.
2025-12-07 05:39:06 -06:00

20 lines
501 B
TypeScript

import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
import { Logo } from '@/components/Logo';
import { NavLinks } from '@/components/NavLinks';
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: (
<div className="flex items-center gap-2">
<Logo />
<span>Dokploy</span>
</div>
),
url: 'https://dokploy.com',
children: <NavLinks />,
},
githubUrl: 'https://github.com/Dokploy/dokploy',
};
}