import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
import { appName, basePath, gitConfig } from './shared';
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: (
<img
src={`${basePath}/logo.svg`}
alt={appName}
style={{ display: 'block', height: 28, width: 'auto' }}
/>
),
},
githubUrl: `https://github.com/${gitConfig.user}/${gitConfig.repo}`,
searchToggle: {
enabled: true,
},
themeSwitch: {
enabled: false,
},
};
}