import { Box, Text } from '@/design-system' import { useTranslation } from '@/hooks' export const ProfileHeader = () => { const { t } = useTranslation() return ( {t('profile_screen.profile')} {t('profile_screen.update_your_details')} ) }