Skip to content

Commit 060addf

Browse files
committed
fix(ui): replace remaining target emoji in Layout header with spade icon
- Update desktop sidebar header (both expanded and collapsed states) - Update mobile header - Now all UI elements use the consistent spade icon (♠️)
1 parent 2ca6ab9 commit 060addf

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

klondike-web/src/components/Layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ export function Layout() {
144144
{/* Header with project name and close/collapse buttons */}
145145
<div className="flex h-16 items-center justify-between border-b border-gray-200 dark:border-gray-700 px-4">
146146
{!sidebarCollapsed && (
147-
<h1 className="text-xl font-bold text-indigo-600 dark:text-indigo-400">🎯 Klondike</h1>
147+
<h1 className="text-xl font-bold text-indigo-600 dark:text-indigo-400">♠️ Klondike</h1>
148148
)}
149149
{sidebarCollapsed && (
150-
<span className="text-xl mx-auto">🎯</span>
150+
<span className="text-xl mx-auto">♠️</span>
151151
)}
152152
<button
153153
onClick={() => setSidebarOpen(false)}
@@ -255,7 +255,7 @@ export function Layout() {
255255
>
256256
<Bars3Icon className="h-6 w-6" aria-hidden="true" />
257257
</button>
258-
<h1 className="ml-3 text-lg font-bold text-indigo-600 dark:text-indigo-400">🎯 Klondike</h1>
258+
<h1 className="ml-3 text-lg font-bold text-indigo-600 dark:text-indigo-400">♠️ Klondike</h1>
259259
</div>
260260
<div className="flex items-center gap-2">
261261
<OfflineIndicator />

src/klondike_spec_cli/static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link rel="icon" type="image/svg+xml" href="/klondike.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Klondike Spec - Project Management</title>
8-
<script type="module" crossorigin src="/assets/index-KTHQtczq.js"></script>
8+
<script type="module" crossorigin src="/assets/index-Der7-lRC.js"></script>
99
<link rel="stylesheet" crossorigin href="/assets/index-DgiFVBcF.css">
1010
</head>
1111
<body>

0 commit comments

Comments
 (0)