Infinite Logo Slider
Infinite Logo Slider is a React and Tailwind CSS marquee component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
marquee
What it is
Infinite Logo Slider is a React and Tailwind CSS marquee component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Four free copies a week. No card.
No packages beyond the project baseline
Licence
This component comes from Motion Primitives and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Infinite Logo Slider
import { InfiniteSlider } from '@/components/core/infinite-slider';
export function InfiniteSliderBasic() {
return (
<InfiniteSlider gap={24} reverse>
<img
src='/apple_music_logo.svg'
alt='Apple Music logo'
className='h-[120px] w-auto'
/>
<img
src='/chrome_logo.svg'
alt='Chrome logo'
className='h-[120px] w-auto'
/>
<img
src='/strava_logo.svg'
alt='Strava logo'
className='h-[120px] w-auto'
/>
<img
src='/nintendo_logo.svg'
alt='Nintendo logo'
className='h-[120px] w-auto'
/>
<img
src='/jquery_logo.svg'
alt='Jquery logo'
className='h-[120px] w-auto'
/>
<img
src='/prada_logo.svg'
alt='Prada logo'
className='h-[120px] w-auto'
/>
</InfiniteSlider>
);
}