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