Skip to content

fix(console): show real Kilo logo in navbar - #11561

Merged
catrielmuller merged 2 commits into
Kilo-Org:mainfrom
IamCoder18:trusting-property
Jul 3, 2026
Merged

fix(console): show real Kilo logo in navbar#11561
catrielmuller merged 2 commits into
Kilo-Org:mainfrom
IamCoder18:trusting-property

Conversation

@IamCoder18

Copy link
Copy Markdown
Contributor

Issue

Closes #11560

Context

The Kilo Console navbar showed a hardcoded capital "K" letter inside a 1rem yellow badge instead of the real Kilo logo that the rest of the product uses (VS Code extension, TUI, docs). This made the console look like a placeholder and was inconsistent with the rest of Kilo Code's branding. This swaps the letter for the Kilo logo, drops the redundant "Kilo" wordmark (the logo carries it), and uses import.meta.env.BASE_URL so the asset resolves correctly under both Vite (/) and the CLI's static server (/console/).

Implementation

  • Added packages/kilo-console/public/kilo-logo.svg (copy of packages/kilo-vscode/assets/icons/kilo-light.svg, the Kilo mark: yellow KILO on black).

Screenshots / Video

before after
chrome_UDSMKClXSK chrome_Rd8TOdMg58

How to Test

Manual/local verification

  • Ran bun dev console --hostname 0.0.0.0
  • Verified the logo appears instead of the "K"

Reviewer test steps

  1. From packages/kilo-console/, run bun run console and open the dev URL (default http://127.0.0.1:3017). Confirm the navbar shows the Kilo logo followed by the word "Console".
  2. Resize the window below 760px and confirm "Console" hides correctly per the existing responsive rule (logo + collapse behavior unchanged from before).

Checklist

  • Issue linked above, or exception explained
  • Tests/verification described
  • Screenshots/video included for visual changes, or marked N/A
  • Changeset considered for user-facing changes
  • I personally reviewed the diff and can explain the changes, including any AI-assisted work.

Get in Touch

Discord: @IamCoder18

Comment thread packages/kilo-console/src/components/app-header/AppHeader.tsx Outdated
@kilo-code-bot

kilo-code-bot Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

Code Review Summary

Status: No Issues Found | Recommendation: Merge

Files Reviewed (4 files)
  • .changeset/console-navbar-kilo-logo.md
  • packages/kilo-console/public/kilo-logo.svg
  • packages/kilo-console/src/components/app-header/AppHeader.tsx
  • packages/kilo-console/src/styles/base.css
Previous Review Summary (commit 36a9ae6)

Current summary above is authoritative. Previous snapshots are kept for context only.

Previous review (commit 36a9ae6)

Status: 1 Issue Found | Recommendation: Address before merge

Overview

Severity Count
CRITICAL 0
WARNING 1
SUGGESTION 0

Fix these issues in Kilo Cloud

Issue Details (click to expand)

WARNING

File Line Issue
packages/kilo-console/src/components/app-header/AppHeader.tsx 7 The brand link is still hardcoded to /projects, so the navbar continues to break when the console is served under a non-root base path such as /console/.
Files Reviewed (4 files)
  • .changeset/console-navbar-kilo-logo.md - 0 issues
  • packages/kilo-console/public/kilo-logo.svg - 0 issues
  • packages/kilo-console/src/components/app-header/AppHeader.tsx - 1 issue
  • packages/kilo-console/src/styles/base.css - 0 issues

Reviewed by gpt-5.4-20260305 · Input: 39.7K · Output: 6.2K · Cached: 334.1K

Review guidance: REVIEW.md from base branch main

The Kilo Console navbar rendered a hardcoded capital "K" letter
inside a 1rem yellow badge instead of the actual Kilo logo. The base
.header-mark style in kilo-web-ui was designed for a single-letter
mark, which is why no image reference existed in the first place.

Swap the letter for the canonical Kilo logo (copied from the VS Code
extension's assets) and drop the redundant "Kilo" wordmark next to
it since the logo already carries the brand name. The new .header-mark-logo
override strips the badge chrome (background, color, font props) so the
SVG renders cleanly, and uses import.meta.env.BASE_URL so the asset
URL resolves correctly whether the console is served by Vite (base /)
or by the CLI's static server under /console/.

Also replace the brand link's plain <a> with the router's <A> component
so the home href is automatically prefixed with the configured router
base, keeping navigation aligned with the asset URL under /console/.
@IamCoder18

Copy link
Copy Markdown
Contributor Author

Ready to review!

The issue flagged by the bot was actually a previous issue as well, but I've fixed it anyway.

The issue was that clicking the logo redirected to /projects (404) instead of /console/projects.
Hopefully this isn't out of scope for this PR!

@johnnyeric
johnnyeric requested a review from catrielmuller June 23, 2026 09:35
@catrielmuller
catrielmuller merged commit 19e48a6 into Kilo-Org:main Jul 3, 2026
20 checks passed
NJ-2020 pushed a commit to NJ-2020/kilocode that referenced this pull request Jul 4, 2026
t7tran pushed a commit to t7tran/kilocode that referenced this pull request Aug 14, 2026
t7tran pushed a commit to t7tran/kilocode that referenced this pull request Aug 14, 2026
fix(console): show real Kilo logo in navbar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Kilo Console navbar shows a hardcoded "K" letter instead of the Kilo logo

2 participants