import DoctorAvatar from "@/app/component/DoctorAvatar"; function Head({ doctor }) { // تبدیل specialties array به string const expertiseText = doctor?.specialties ?.map((exp) => exp.name) .join("، ") || ""; return (

{doctor?.name}

تخصص: {expertiseText}

); } export default Head;