change date-picker & add page login-verify & account & new user & payment
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import Image from "next/image"
|
||||
|
||||
function Head({ doctor }) {
|
||||
return (
|
||||
<div className="flex items-center justify-start gap-[16px] my-[24px]">
|
||||
<Image
|
||||
alt="profile doctor"
|
||||
src={doctor.img}
|
||||
height={95}
|
||||
width={95}
|
||||
/>
|
||||
<div className="flex flex-col items-start justify-center gap-[20px]">
|
||||
<p className="text-[#3B3B3B] text-[20px] font-medium">{doctor.name}</p>
|
||||
<p className="text-[#616161] text-[16px] font-medium">تخصص: {doctor.expertise}</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Head
|
||||
Reference in New Issue
Block a user