Feat: images container in tier level

This commit is contained in:
2025-01-07 22:06:50 +03:00
parent db0808467d
commit 3de1ef1080

View File

@@ -27,17 +27,20 @@ export const Tier = ({ color, name, textColor }: TierProps) => {
text_color_code = '#2d3436'; text_color_code = '#2d3436';
} }
return ( return (
<div className='w-full min-h-64 bg-[#2d3436] relative h-auto'> <>
<div <div className='w-full min-h-64 bg-[#2d3436] h-auto flex flex-row'>
className='w-52 h-80 flex items-center justify-center' <div
style={{ className='w-52 h-80 flex items-center justify-center'
color: text_color_code, style={{
backgroundColor: color_code, color: text_color_code,
}} backgroundColor: color_code,
> }}
<p className=''>{name}</p> >
<p>{name}</p>
</div>
<div className='image-container flex flex-row gap-1'></div>
</div> </div>
<hr /> <hr />
</div> </>
); );
}; };