Image tags are fucked for right now.

Cart is working
This commit is contained in:
2024-10-08 10:05:58 +05:30
parent 990e7ee75b
commit 4df566df5e
47 changed files with 1113 additions and 1204 deletions

View File

@ -18,13 +18,7 @@ export function Spotlight() {
{logos.map((logo, index) => (
<div key={index} className='flex flex-col items-center'>
<div className='w-32 h-32 bg-white rounded-full shadow-lg flex items-center justify-center'>
<Image
src={logo.src}
alt={logo.alt}
width={80}
height={80}
className='w-full h-auto object-contain'
/>
<Image src={logo.src} alt={logo.alt} width={80} height={80} className='w-full h-auto object-contain' />
</div>
</div>
))}