@@ -253,20 +253,26 @@ export default function ApplicationLayout({
253253 < div className = "flex justify-center items-center gap-6 relative z-10" > </ div >
254254
255255 { /* Right Section - Navigation Links, BTC Balance Dropdown & Auth Button */ }
256- < div className = "flex items-center gap-6 relative z-10 justify-end" >
256+ < div className = "flex items-center gap-2 lg:gap-3 xl:gap- 6 relative z-10 justify-end flex-nowrap " >
257257 < a
258258 href = "https://docs.aibtc.com/how-aibtc-works"
259- className = "text-sm font-medium text-foreground/80 hover:text-foreground transition-colors duration-200"
259+ className = "text-xs lg:text- sm font-medium text-foreground/80 hover:text-foreground transition-colors duration-200 whitespace-nowrap "
260260 target = "_blank"
261261 >
262262 How it works
263263 </ a >
264264 < Link
265265 href = "/aibtc-charter"
266- className = "text-sm font-medium text-foreground/80 hover:text-foreground transition-colors duration-200"
266+ className = "text-xs lg:text- sm font-medium text-foreground/80 hover:text-foreground transition-colors duration-200 whitespace-nowrap "
267267 >
268268 AIBTC Charter
269269 </ Link >
270+ < Link
271+ href = "/leaderboard"
272+ className = "text-xs lg:text-sm font-medium text-foreground/80 hover:text-foreground transition-colors duration-200 whitespace-nowrap"
273+ >
274+ Leaderboard
275+ </ Link >
270276 { /* Notification Bell - commented out per requirements */ }
271277 { /* {isAuthenticated && (
272278 <div className="mr-3">
@@ -346,16 +352,25 @@ export default function ApplicationLayout({
346352 { /* Sidebar Header */ }
347353 < div className = "flex items-center justify-between p-4 border-b border-border/20 relative z-10" >
348354 < div className = "flex items-center gap-3" >
349- < Image
350- src = "/logos/aibtcdev-avatar-1000px.png"
351- alt = "AIBTC"
352- width = { 24 }
353- height = { 24 }
354- className = "shadow-lg shadow-primary/20"
355- />
356- < span className = "text-lg font-bold text-foreground" >
357- Menu
358- </ span >
355+ < div className = "flex flex-col gap-1" >
356+ < Image
357+ src = "/logos/aibtcdev-primary-logo-black-wide-1000px.png"
358+ alt = "AIBTCDEV"
359+ width = { 100 }
360+ height = { 24 }
361+ className = "h-6 w-auto block dark:hidden"
362+ />
363+ < Image
364+ src = "/logos/aibtcdev-primary-logo-white-wide-1000px.png"
365+ alt = "AIBTCDEV"
366+ width = { 100 }
367+ height = { 24 }
368+ className = "h-6 w-auto hidden dark:block"
369+ />
370+ < span className = "text-[10px] text-muted-foreground whitespace-nowrap" >
371+ The Bitcoin Coordination Network
372+ </ span >
373+ </ div >
359374 </ div >
360375 < Button
361376 variant = "ghost"
@@ -367,12 +382,31 @@ export default function ApplicationLayout({
367382 </ Button >
368383 </ div >
369384
370- { /* Navigation - Empty since items moved to dropdown */ }
385+ { /* Navigation */ }
371386 < nav className = "flex-1 px-4 py-6 relative z-10 overflow-y-auto" >
372387 < div className = "space-y-3" >
373- < div className = "text-center text-muted-foreground text-sm py-8" >
374- Use the dropdown menu above to navigate
375- </ div >
388+ < a
389+ href = "https://docs.aibtc.com/how-aibtc-works"
390+ target = "_blank"
391+ className = "block px-4 py-3 text-sm font-medium text-foreground/80 hover:text-foreground hover:bg-primary/10 rounded-sm transition-colors duration-200"
392+ onClick = { ( ) => setLeftPanelOpen ( false ) }
393+ >
394+ How it works
395+ </ a >
396+ < Link
397+ href = "/aibtc-charter"
398+ className = "block px-4 py-3 text-sm font-medium text-foreground/80 hover:text-foreground hover:bg-primary/10 rounded-sm transition-colors duration-200"
399+ onClick = { ( ) => setLeftPanelOpen ( false ) }
400+ >
401+ AIBTC Charter
402+ </ Link >
403+ < Link
404+ href = "/leaderboard"
405+ className = "block px-4 py-3 text-sm font-medium text-foreground/80 hover:text-foreground hover:bg-primary/10 rounded-sm transition-colors duration-200"
406+ onClick = { ( ) => setLeftPanelOpen ( false ) }
407+ >
408+ Leaderboard
409+ </ Link >
376410 </ div >
377411 </ nav >
378412 </ div >
0 commit comments