2026-05-11 01:08:31 -07:00
|
|
|
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
2026-05-19 18:07:29 -04:00
|
|
|
import { GitHubIcon } from "@/components/github-icon";
|
2026-05-11 01:08:31 -07:00
|
|
|
import { Logo } from "@/components/logo";
|
2026-05-19 18:07:29 -04:00
|
|
|
import { SlackIcon } from "@/components/slack-icon";
|
2026-05-11 01:08:31 -07:00
|
|
|
|
|
|
|
|
export const baseOptions: BaseLayoutProps = {
|
|
|
|
|
nav: {
|
|
|
|
|
title: <Logo />,
|
|
|
|
|
transparentMode: "top",
|
|
|
|
|
},
|
2026-05-19 18:07:29 -04:00
|
|
|
links: [
|
|
|
|
|
{
|
|
|
|
|
type: "icon",
|
|
|
|
|
label: "GitHub",
|
|
|
|
|
icon: <GitHubIcon />,
|
|
|
|
|
text: "GitHub",
|
|
|
|
|
url: "https://github.com/kaelio/ktx",
|
|
|
|
|
external: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "icon",
|
2026-05-20 17:33:38 +02:00
|
|
|
label: "Join the ktx Slack community",
|
2026-05-19 18:07:29 -04:00
|
|
|
icon: <SlackIcon />,
|
|
|
|
|
text: "Slack",
|
|
|
|
|
url: "https://join.slack.com/t/ktxcommunity/shared_invite/zt-3y9b44m1x-LVyNNJD5nwaZHq4XS29LMQ",
|
|
|
|
|
external: true,
|
|
|
|
|
},
|
|
|
|
|
],
|
2026-05-11 01:08:31 -07:00
|
|
|
};
|