import { Home, ArrowLeft, Menu } from 'lucide-react'; import { useLocation } from 'wouter'; interface MobileHeaderProps { title?: string; onMenuClick?: () => void; showBack?: boolean; backPath?: string; } export function MobileHeader({ title = 'AeThex OS', onMenuClick, showBack = true, backPath = '/mobile' }: MobileHeaderProps) { const [, navigate] = useLocation(); return (