Files
app/components/Navigation/MobileHeader.tsx
Albert 88a74ff0fe wip: Font and logo fixes in progress
- Reverted logo SVG to original viewBox
- Applied forum.variable to body for CSS variable
- Updated Save button to generate draft from conversation
- Logo size and font variables still need fixes

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

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

41 lines
788 B
TypeScript

'use client';
/**
* Mobile Header
*
* Fixed header for mobile devices showing the Ponderants logo.
*/
import { Group, Title, Paper } from '@mantine/core';
export function MobileHeader() {
return (
<Paper
withBorder
p="sm"
radius={0}
style={{
position: 'fixed',
top: 0,
left: 0,
right: 0,
zIndex: 100,
borderBottom: '1px solid #373A40',
}}
>
<Group gap="md" align="center" wrap="nowrap">
<img
src="/logo.svg"
alt="Ponderants logo"
width={48}
height={48}
style={{ flexShrink: 0, display: 'block' }}
/>
<Title order={3} style={{ margin: 0 }}>
Ponderants
</Title>
</Group>
</Paper>
);
}