docs: add monitoring documentation and update navigation

This commit is contained in:
Mauricio Siu
2025-03-04 00:32:54 -06:00
parent 8f9fe5693b
commit 259b4a5b09
5 changed files with 79 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
import { Github, GlobeIcon, HeartIcon } from "lucide-react";
import { Github, GlobeIcon, HeartIcon, Rss } from "lucide-react";
import Link from "next/link";
/**
* Shared layout configurations
@@ -89,5 +89,15 @@ export const baseOptions: BaseLayoutProps = {
</>
),
},
{
text: "Blog",
url: "https://dokploy.com/blog",
active: "nested-url",
icon: (
<>
<Rss />
</>
),
},
],
};