feat: docs
CI / 🔍 Lint & Type Check (push) Successful in 2m11s
CI / 🐳 Build & Push Image (push) Successful in 1m16s

This commit is contained in:
2026-07-17 16:15:54 +02:00
parent 0c2f42b4a3
commit 1542a991b9
38 changed files with 6366 additions and 19 deletions
+28
View File
@@ -0,0 +1,28 @@
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,
},
};
}