2026-05-11 01:08:31 -07:00
|
|
|
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
|
|
|
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: {
|
2026-06-06 22:32:08 -04:00
|
|
|
title: Logo,
|
2026-05-11 01:08:31 -07:00
|
|
|
transparentMode: "top",
|
|
|
|
|
},
|
2026-05-19 18:07:29 -04:00
|
|
|
links: [
|
2026-06-07 23:15:21 +02:00
|
|
|
{
|
|
|
|
|
type: "menu",
|
|
|
|
|
text: "Products",
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
text: "ktx",
|
|
|
|
|
description: "The ktx CLI & toolkit docs",
|
|
|
|
|
url: "/docs",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "Kaelio Platform",
|
|
|
|
|
description: "Docs for the Kaelio platform",
|
|
|
|
|
url: "https://docs.kaelio.com/agent/docs",
|
|
|
|
|
external: true,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-05-19 18:07:29 -04:00
|
|
|
{
|
|
|
|
|
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
|
|
|
};
|