mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-11-09 13:39:49 +00:00
25 lines
596 B
TypeScript
25 lines
596 B
TypeScript
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",
|
|
};
|
|
}
|