fix responsive all page & add modal doctor id & page dashboard aside
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import Image from "next/image"
|
||||
|
||||
function Head({ user }) {
|
||||
return (
|
||||
<div
|
||||
className="w-full flex flex-col items-center justify-start gap-[4px]"
|
||||
>
|
||||
<Image
|
||||
src={user.profile}
|
||||
alt="profile"
|
||||
height={73}
|
||||
width={73}
|
||||
/>
|
||||
<p className="text-[#3B3B3B] text-[14px] font-bold">{user.name}</p>
|
||||
<p className="text-[#7E7E7E] text-[14px] font-normal">{user.phone}</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Head
|
||||
Reference in New Issue
Block a user