fix(console): show real Kilo logo in navbar - #11561
Merged
Merged
Conversation
Contributor
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (4 files)
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
Fix these issues in Kilo Cloud Issue Details (click to expand)WARNING
Files Reviewed (4 files)
Reviewed by gpt-5.4-20260305 · Input: 39.7K · Output: 6.2K · Cached: 334.1K Review guidance: REVIEW.md from base branch |
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
force-pushed
the
trusting-property
branch
from
June 23, 2026 02:17
36a9ae6 to
b2db7a4
Compare
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. |
catrielmuller
approved these changes
Jul 3, 2026
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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_URLso the asset resolves correctly under both Vite (/) and the CLI's static server (/console/).Implementation
packages/kilo-console/public/kilo-logo.svg(copy ofpackages/kilo-vscode/assets/icons/kilo-light.svg, the Kilo mark: yellow KILO on black).Screenshots / Video
How to Test
Manual/local verification
bun dev console --hostname 0.0.0.0Reviewer test steps
packages/kilo-console/, runbun run consoleand open the dev URL (defaulthttp://127.0.0.1:3017). Confirm the navbar shows the Kilo logo followed by the word "Console".Checklist
Get in Touch
Discord: @IamCoder18