Files
landing-web/lib/layout.shared.tsx
T
leonm 1542a991b9
CI / 🔍 Lint & Type Check (push) Successful in 2m11s
CI / 🐳 Build & Push Image (push) Successful in 1m16s
feat: docs
2026-07-17 16:15:54 +02:00

29 lines
566 B
TypeScript

import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: (
<span className="docs-brand">
<span className="docs-brand-mark" aria-hidden="true">
L
</span>
<span>Cours Docker</span>
</span>
),
url: "/docs",
transparentMode: "none",
},
links: [
{
text: "Accueil",
url: "/",
active: "none",
},
],
themeSwitch: {
enabled: false,
},
};
}