feat: add SEO

This commit is contained in:
Mauricio Siu
2024-11-09 22:59:04 -06:00
parent 8267c4a7b6
commit 179e97dd56
47 changed files with 1346 additions and 152 deletions

View File

@@ -1,5 +1,5 @@
import type { BaseLayoutProps } from "fumadocs-ui/layout";
import { GlobeIcon, HeartIcon } from "lucide-react";
import { Github, GlobeIcon, HeartIcon } from "lucide-react";
export const Logo = () => {
return (
@@ -72,5 +72,15 @@ export const baseOptions: BaseLayoutProps = {
</>
),
},
{
text: "Github",
url: "https://github.com/dokploy/dokploy",
active: "nested-url",
icon: (
<>
<Github fill="currentColor" />
</>
),
},
],
};