41 lines
913 B
TypeScript
41 lines
913 B
TypeScript
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
|
|
export function baseOptions(): BaseLayoutProps {
|
|
return {
|
|
nav: {
|
|
title: <span className="font-semibold">OpenSEO</span>,
|
|
},
|
|
searchToggle: {
|
|
enabled: false,
|
|
},
|
|
links: [
|
|
{
|
|
text: "Resources",
|
|
url: "/blogs",
|
|
items: [
|
|
{
|
|
text: "Blog",
|
|
description: "Founder-focused SEO articles.",
|
|
url: "/blogs",
|
|
},
|
|
{
|
|
text: "MCP",
|
|
description: "Connect OpenSEO to AI clients.",
|
|
url: "/docs/mcp",
|
|
},
|
|
{
|
|
text: "Skills",
|
|
description: "Focused OpenSEO workflows.",
|
|
url: "/docs/skills",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: "GitHub",
|
|
url: "https://github.com/every-app/open-seo",
|
|
external: true,
|
|
},
|
|
],
|
|
};
|
|
}
|