diff --git a/README.md b/README.md index 67abe741..d286e3f1 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Documentation Join the ktx Slack community License - Y Combinator P25 + Y Combinator P25

@@ -23,6 +23,10 @@ Slack

+

+ Built and maintained by Kaelio +

+ --- **ktx** is a self-improving context layer that teaches agents how to query your diff --git a/docs-site/app/layout.config.tsx b/docs-site/app/layout.config.tsx index 3245ab09..28ba6b03 100644 --- a/docs-site/app/layout.config.tsx +++ b/docs-site/app/layout.config.tsx @@ -5,7 +5,7 @@ import { SlackIcon } from "@/components/slack-icon"; export const baseOptions: BaseLayoutProps = { nav: { - title: , + title: Logo, transparentMode: "top", }, links: [ diff --git a/docs-site/components/logo.tsx b/docs-site/components/logo.tsx index afc926a8..77370280 100644 --- a/docs-site/components/logo.tsx +++ b/docs-site/components/logo.tsx @@ -1,40 +1,56 @@ -export function Logo() { +"use client"; + +import Link from "next/link"; + +const brandFont = { + fontFamily: "var(--font-display), var(--font-sans), sans-serif", +} as const; + +export function Logo({ href = "/", className }: { href?: string; className?: string }) { return ( -
-
- - -
-
+
+
+ + + + + + +
+ + ktx + + + by Kaelio + +
- ktx - - - by Kaelio + Docs
- - Docs -
); } diff --git a/packages/cli/package.json b/packages/cli/package.json index 3255d4c2..c08d26f2 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,6 +2,10 @@ "name": "@kaelio/ktx", "version": "0.9.0", "description": "Standalone ktx context layer for data agents", + "author": { + "name": "Kaelio", + "url": "https://www.kaelio.com" + }, "type": "module", "engines": { "node": ">=22.0.0"