10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
|
|
|
|
export function baseOptions(): BaseLayoutProps {
|
|
return {
|
|
nav: {
|
|
title: 'Voicebox',
|
|
},
|
|
};
|
|
}
|