Skip to content

Commit 90de222

Browse files
feat(ui): update logo text from 'Kilo Code' to 'Kilo' (#1427)
## Summary Updated the logo text in the upper left corner of the application from "Kilo Code" to "Kilo". This change affects both the desktop sidebar header and mobile header components to maintain consistency across all views. Changes made: - Updated HeaderLogo component text from "Kilo Code" to "Kilo" - Updated AnimatedLogo component text from "Kilo Code" to "Kilo" - Updated accessibility labels to reflect the new branding ## Verification - [x] Verified changes apply to both desktop sidebar (HeaderLogo) and mobile header (AnimatedLogo) - [x] Confirmed accessibility labels were updated accordingly - [x] Text formatting and styling remain unchanged ## Reviewer Notes Simple text change affecting two logo components. The change maintains all existing hover animations, styling, and functionality while updating the brand text display.
2 parents b119cc1 + 7277a41 commit 90de222

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/AnimatedLogo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export function AnimatedLogo() {
4949
{/* Fallback image for browsers that don't support video */}
5050
<Image src="/kilo-v1.svg" alt="Kilo Code Logo" width={48} height={48} className="mr-2" />
5151
</video>
52-
<h1 className="text-3xl leading-[0.8] font-bold tracking-tighter">Kilo Code</h1>
52+
<h1 className="text-3xl leading-[0.8] font-bold tracking-tighter">Kilo</h1>
5353
</Link>
5454
);
5555
}

src/components/HeaderLogo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function HeaderLogo({ className, href }: HeaderLogoProps) {
6161
</motion.div>
6262
</AnimatePresence>
6363
</motion.div>
64-
<span className="text-3xl font-bold whitespace-nowrap">Kilo Code</span>
64+
<span className="text-3xl font-bold whitespace-nowrap">Kilo</span>
6565
</>
6666
);
6767

@@ -85,7 +85,7 @@ export default function HeaderLogo({ className, href }: HeaderLogoProps) {
8585
'focus:text-brand-primary focus:ring-brand-primary focus:ring-3',
8686
className
8787
)}
88-
aria-label="Kilo Code Homepage"
88+
aria-label="Kilo Homepage"
8989
>
9090
{logoContent}
9191
</Link>

0 commit comments

Comments
 (0)