I am experiencing an issue with some empty space in my profile container that I would like to have removed. The profile container is where the problem lies.
<div className='h-auto w-[650px] z-10 rounded-xl' style={{ backdropFilter: `blur(400px)`, backgroundColor: bgColorWithOpacity }}>
{user.Banner && (
<div className='h-full w-full'>
<img src={user.Banner} className='rounded-t-xl' alt={user.Username} />
</div>
)}
<div className={`items-center grow flex flex-col z-20 ${user.Banner ? '-translate-y-24' : ''} px-8 py-8`}>
<img src={user.Avatar} className='w-[128px] h-[128px] object-cover rounded-md' alt='' />
<h1 className='mt-4 font-bold text-2xl'>{user.username}</h1>
{user.Bio && (
<p className='text-sm mt-2'>{user.Bio}</p>
)}
</div>
</div>