import { Marquee } from '@/components/ui/marquee';
const logos = [
{
name: 'Microsoft',
img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',
},
{
name: 'Apple',
img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',
},
{
name: 'Google',
img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',
},
{
name: 'Facebook',
img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',
},
{
name: 'LinkedIn',
img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',
},
{
name: 'Twitter',
img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',
},
];
const Marquee3D = () => {
return (
<div className='relative flex h-full w-96 mx-auto flex-col items-center justify-center gap-4 overflow-hidden rounded-lg border dark:bg-neutral-800 bg-neutral-50 px-20 md:shadow-xl'>
<div className='flex flex-row gap-4 perspective-near'>
<Marquee
className='h-96 justify-center overflow-hidden [--duration:60s] [--gap:1rem]'
vertical
style={{
transform:
'translateX(0px) translateY(0px) translateZ(-50px) rotateX(0deg) rotateY(-20deg) rotateZ(10deg) scale(1.5)',
}}
>
{logos.map((data, idx) => (
<img
key={idx}
src={data.img}
alt={data.name}
className='mx-auto h-full w-3/4 cursor-pointer rounded-xl border border-neutral-300 transition-all duration-300 hover:ring-1 hover:ring-neutral-300'
/>
))}
</Marquee>
</div>
<div className='pointer-events-none absolute inset-y-0 left-0 w-1/3 bg-linear-to-r from-white dark:from-background'></div>
<div className='pointer-events-none absolute inset-y-0 right-0 w-1/3 bg-linear-to-l from-white dark:from-background'></div>
</div>
);
};
export default Marquee3D;