Skip to content

Commit 43bc004

Browse files
author
hashpanda
committed
feat(web): add brand assets and update header
- Add terminal-style logo.svg with >_ prompt symbol - Add favicon.png (32x32) and favicon.svg for cross-browser support - Update Header to use external logo.svg instead of inline SVG - Fix GitHub repository link in header Made-with: Cursor
1 parent e928391 commit 43bc004

4 files changed

Lines changed: 27 additions & 4 deletions

File tree

web/public/favicon.png

369 Bytes
Loading

web/public/favicon.svg

Lines changed: 7 additions & 0 deletions
Loading

web/public/logo.svg

Lines changed: 7 additions & 0 deletions
Loading

web/src/components/layout/header.tsx

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,17 @@ export function Header() {
3939
return (
4040
<header className="sticky top-0 z-50 border-b border-[var(--color-border)] bg-[var(--color-bg)]/80 backdrop-blur-sm">
4141
<div className="mx-auto flex h-14 max-w-7xl items-center justify-between px-4 sm:px-6 lg:px-8">
42-
<Link href={`/${locale}`} className="text-lg font-bold">
43-
Build Claude Code
42+
<Link href={`/${locale}`} className="flex items-center gap-2 text-lg font-bold">
43+
<img
44+
src="/logo.svg"
45+
width={24}
46+
height={24}
47+
alt=""
48+
aria-hidden="true"
49+
className="shrink-0 dark:invert"
50+
/>
51+
<span className="hidden sm:inline">Build Claude Code</span>
52+
<span className="sm:hidden">BCC</span>
4453
</Link>
4554

4655
<nav className="hidden items-center gap-6 md:flex" aria-label="Main navigation">
@@ -91,7 +100,7 @@ export function Header() {
91100
</button>
92101

93102
<a
94-
href="https://github.com/anthropics/claude-code"
103+
href="https://github.com/funAgent/build-claude-code-cli"
95104
target="_blank"
96105
rel="noopener"
97106
aria-label="GitHub repository"
@@ -170,7 +179,7 @@ export function Header() {
170179
{mounted ? (dark ? <Sun size={18} /> : <Moon size={18} />) : <span className="inline-block h-[18px] w-[18px]" />}
171180
</button>
172181
<a
173-
href="https://github.com/anthropics/claude-code"
182+
href="https://github.com/funAgent/build-claude-code-cli"
174183
target="_blank"
175184
rel="noopener"
176185
aria-label="GitHub repository"

0 commit comments

Comments
 (0)