mirror of
https://github.com/Dokploy/website.git
synced 2026-06-16 04:35:26 +02:00
- Enhanced API documentation with new MDX files and improved structure. - Updated OpenAPI specifications to reflect recent changes and added new components. - Refined global CSS and layout configurations for better styling and user experience. - Added various images and icons to enrich the visual aspects of the documentation. - Updated package dependencies to ensure compatibility with the latest features.
20 lines
501 B
TypeScript
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',
|
|
};
|
|
}
|