feat(HAI-089): add logo SVG to header component with tests

- Add logo.svg image element to Header component before the h1 title
- Add header-logo CSS class with sizing and flex-shrink styles
- Update header-left alignment from baseline to center
- Add Header component tests covering logo rendering and position
This commit is contained in:
Dustin Byrne
2026-03-26 01:05:27 -04:00
parent d37f887552
commit 2ab34bc11a
3 changed files with 31 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ export function Header({ onOpenSettings }: HeaderProps) {
return (
<header className="header">
<div className="header-left">
<img src="/logo.svg" alt="hai logo" className="header-logo" width={24} height={24} />
<h1 className="logo">hai</h1>
<span className="logo-sub">board</span>
</div>