fix(landing): design audit fixes — hamburger menu, dead links, branding, spacing #117

Merged
chihlasm merged 3 commits from fix/landing-design-audit into main 2026-03-21 13:55:37 +00:00
Showing only changes of commit 701a3b6020 - Show all commits

View File

@@ -78,10 +78,10 @@ export function TopBar() {
{/* Spacer - push search to center */}
<div className="flex-1" />
{/* Search trigger */}
{/* Search trigger — icon on mobile, full bar on desktop */}
<button
onClick={() => setCommandPaletteOpen(true)}
className="relative w-full text-left"
className="hidden sm:relative sm:block w-full text-left"
style={{ maxWidth: '480px' }}
>
<Search size={16} className="absolute left-3 top-1/2 -translate-y-1/2 text-muted-foreground" />
@@ -92,6 +92,13 @@ export function TopBar() {
{navigator.platform?.toLowerCase().includes('mac') ? '⌘K' : 'Ctrl+K'}
</span>
</button>
<button
onClick={() => setCommandPaletteOpen(true)}
className="sm:hidden rounded-lg p-2 text-muted-foreground hover:bg-card hover:text-foreground transition-colors"
title="Search"
>
<Search size={18} />
</button>
{/* Spacer - push actions to right */}
<div className="flex-1" />