import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'; import Image from 'next/image'; import { appName, gitConfig } from './shared'; export function baseOptions(): BaseLayoutProps { return { nav: { title: ( <> {appName} ), }, githubUrl: `https://github.com/${gitConfig.user}/${gitConfig.repo}`, }; }