import { Box, Typography } from '@mui/material'; export function Header() { const headers = [{ name: 'محمدحسین برزه گر', phone: '09123456789' }]; return ( {headers.map((h) => ( {h.name} {h.phone} ))} ); }