fix responsive all page & add modal doctor id & page dashboard aside

This commit is contained in:
Ehsan
2024-09-01 01:36:36 +03:30
parent b058066380
commit 680ef74034
64 changed files with 682 additions and 155 deletions
+20
View File
@@ -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