mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
The docs site nav carried a "Products" dropdown listing both ktx and the legacy Kaelio agent platform. On the ktx docs, a co-equal product switcher framed ktx as one of two products and gave the unrelated legacy product equal billing. Remove it so the ktx docs stay focused; cross-product discovery belongs at the docs.kaelio.com apex, not in the ktx nav. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
537 B
TypeScript
20 lines
537 B
TypeScript
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
import { Logo } from "@/components/logo";
|
|
import { SlackIcon } from "@/components/slack-icon";
|
|
|
|
export const baseOptions: BaseLayoutProps = {
|
|
nav: {
|
|
title: Logo,
|
|
transparentMode: "top",
|
|
},
|
|
links: [
|
|
{
|
|
type: "icon",
|
|
label: "Join the ktx Slack community",
|
|
icon: <SlackIcon />,
|
|
text: "Slack",
|
|
url: "https://join.slack.com/t/ktxcommunity/shared_invite/zt-3y9b44m1x-LVyNNJD5nwaZHq4XS29LMQ",
|
|
external: true,
|
|
},
|
|
],
|
|
};
|