12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
import {i18n} from "@/lib/i18n";
|
|
|
|
export function baseOptions(): BaseLayoutProps {
|
|
return {
|
|
i18n,
|
|
nav: {
|
|
title: "MemeGoat",
|
|
},
|
|
};
|
|
}
|