20 lines
536 B
JavaScript
20 lines
536 B
JavaScript
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 |