import { StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' import { CompanyLogo } from '@/components' import { ThemeSwitcherButton } from '@/components/ThemeSwitcherButton' import { isWeb } from '@/constants' import { Box } from '@/design-system' import { useTheme } from '@/hooks' export function AppHeader() { const { colors } = useTheme() const { top } = useSafeAreaInsets() if (!isWeb) return null const height = 60 + top return ( ) } const jsStyles = StyleSheet.create({ appHeader: { alignItems: 'center', borderBottomWidth: 1, display: 'flex', flexDirection: 'row', justifyContent: 'center', paddingHorizontal: 16, width: '100%', zIndex: 10, }, })