AcaMate_Web/Program/Views/Academy/Common/SympleProfile.razor
SEAN-59 7284dca6f2 Record
정리전 로컬 데이터 푸시
2025-10-28 20:47:58 +09:00

13 lines
712 B
Plaintext

<div class="w-64 h-16 p-4 bg-white rounded-tr-2xl rounded-bl-2xl rounded-br-2xl shadow-[inset_-4px_-4px_4px_0px_rgba(0,0,0,0.25)] inline-flex justify-start items-center gap-3 overflow-hidden">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-full bg-gray-200 overflow-hidden">
<img src="Resources/Images/Logo/Crystal_Icon.png" alt="프로필" class="w-full h-full object-cover" />
</div>
<div>
<!-- 회원 이름이 오는 곳 -->
<div class="text-gray-900 text-base font-medium">@UserName</div>
<!-- 회원 유형이 올 곳 -->
<p class="text-gray-600 text-sm">@UserType</p>
</div>
</div>
</div>