import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"; import { AudioLines } from "lucide-react"; import { appName, arenaUrl, gitConfig } from "./shared"; export function baseOptions(): BaseLayoutProps { return { nav: { title: ( <> {appName} ), }, links: [ { text: "Open the Arena", url: arenaUrl, external: true, }, ], githubUrl: `https://github.com/${gitConfig.user}/${gitConfig.repo}`, }; }