Files
app/public/logo.svg
Albert 1284baf8e8 fix: Implement proper fonts and visible logo
Font fixes:
- Added Title component styles in theme.ts to apply Forum font
- Body uses Zalando Sans via theme fontFamily
- All headings (h1-h6) now use Forum via Title component styles

Logo fixes:
- Rewrote SVG with simplified paths at larger scale
- Removed complex transforms causing content to be outside viewBox
- Logo now renders at 32x32px with clearly visible wave graphic
- Save button now generates draft from conversation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-09 16:41:23 +00:00

16 lines
884 B
XML

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="256" height="256" aria-labelledby="logoTitle">
<title id="logoTitle">Woven abstract logo of communication waves</title>
<g fill-rule="evenodd" fill="none">
<!-- Scaled and positioned wave patterns -->
<!-- Jagged wave - Left end segment --><path stroke="#E0E0E0" stroke-width="3" stroke-linecap="round" fill="none" d="M 15 30 L 22 20" />
<!-- Jagged wave - Right end segment --><path stroke="#E0E0E0" stroke-width="3" stroke-linecap="round" fill="none" d="M 38 40 L 45 30" />
<!-- Curved wave (middle layer) --><path stroke="#909296" stroke-width="3" stroke-linecap="round" fill="none" d="M 15 30 Q 22 45, 30 30 Q 38 15, 45 30" />
<!-- Jagged wave - Center segment --><path stroke="#E0E0E0" stroke-width="3" stroke-linecap="round" fill="none" d="M 22 20 L 30 30 L 38 40" />
</g>
</svg>