29 lines
566 B
TypeScript
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,
|
|
},
|
|
};
|
|
}
|