opencode/packages/www/src/lib/layout.tsx
Dax Raad 3533047421 sync
2026-07-13 10:19:04 -04:00

17 lines
331 B
TypeScript

import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: "OpenCode",
url: "/",
},
links: [
{
text: "GitHub",
url: "https://github.com/anomalyco/opencode",
external: true,
},
],
}
}