Files
plannotator__effective-html/site/lib/layout.shared.tsx
2026-08-02 14:30:21 -07:00

28 lines
622 B
TypeScript

import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: (
<span className="docs-wordmark">
<span className="docs-wordmark-mark" aria-hidden="true" />
Effective HTML
</span>
),
url: "/",
},
links: [
{
text: "Catalog",
url: "/catalog",
},
{
text: "GitHub",
url: "https://github.com/plannotator/effective-html",
external: true,
},
],
githubUrl: "https://github.com/plannotator/effective-html",
};
}