mirror of
https://github.com/Dokploy/website.git
synced 2026-06-15 20:25:25 +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.
20 lines
463 B
TypeScript
20 lines
463 B
TypeScript
import { Logo } from "@/components/Logo";
|
|
import { NavLinks } from "@/components/NavLinks";
|
|
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
|
|
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",
|
|
};
|
|
}
|