<div className='profile-image'>
<img
src={userInfo.profilePhoto}
alt={`${userInfo.nickName}의 프로필`}
onError={(e) => {
e.target.src = '/img/userProfile-ex.png';
}}
/>
<Link
to={`/blog?userId=${userInfo.userId}`}
onClick={() => {
onClose();
}}
>
<p>블로그 가기</p>
</Link>
</div>