This commit is contained in:
rzmk 2025-09-30 14:59:12 -04:00
parent 16088fc929
commit 64708d2d68
26 changed files with 1376 additions and 0 deletions

View file

@ -0,0 +1,25 @@
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
import { SailboatIcon } from "lucide-react";
/**
* Shared layout configurations
*
* you can customise layouts individually from:
* Home Layout: app/(home)/layout.tsx
* Docs Layout: app/docs/layout.tsx
*/
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: (
<>
<SailboatIcon />
ckan-devstaller
</>
),
},
// see https://fumadocs.dev/docs/ui/navigation/links
links: [],
githubUrl: "https://github.com/dathere/ckan-devstaller",
};
}