diff --git a/src/components/avatar-card/index.jsx b/src/components/avatar-card/index.jsx index 525c8dd..19c8e23 100644 --- a/src/components/avatar-card/index.jsx +++ b/src/components/avatar-card/index.jsx @@ -55,17 +55,22 @@ const AvatarCard = ({ profile, loading, avatarRing, resume }) => { : profile.bio} - {resume?.fileUrl && ( - - Download Resume - - )} + {resume?.fileUrl && + (loading ? ( +
+ {skeleton({ width: 'w-48', height: 'h-5' })} +
+ ) : ( + + Download Resume + + ))} );