29 lines
550 B
TypeScript
29 lines
550 B
TypeScript
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"
|
|
|
|
/**
|
|
* Shared layout configurations
|
|
*
|
|
* you can configure layouts individually from:
|
|
* Home Layout: app/(home)/layout.tsx
|
|
* Docs Layout: app/docs/layout.tsx
|
|
*/
|
|
export const baseOptions: BaseLayoutProps = {
|
|
nav: {
|
|
title: "Docs",
|
|
},
|
|
links: [
|
|
{
|
|
text: "Home",
|
|
url: "https://nikiv.dev",
|
|
},
|
|
{
|
|
text: "GitHub",
|
|
url: "https://github.com/nikitavoloboev",
|
|
},
|
|
{
|
|
text: "X",
|
|
url: "https://x.com/nikitavoloboev",
|
|
},
|
|
],
|
|
}
|