mirror of
https://github.com/plannotator/effective-html.git
synced 2026-09-19 01:11:19 +08:00
28 lines
622 B
TypeScript
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",
|
|
};
|
|
}
|