12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
|
|
import { i18n } from '@/lib/i18n';
|
|
|
|
export function baseOptions(_locale: string): BaseLayoutProps {
|
|
return {
|
|
nav: {
|
|
title: 'VidBee',
|
|
},
|
|
i18n,
|
|
};
|
|
}
|