Spotlight Follow
Spotlight Follow is a React and Tailwind CSS background component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
backgrounds
What it is
Spotlight Follow is a React and Tailwind CSS background 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.
Spotlight Follow
import { Spotlight } from '@/components/core/spotlight';
export function SpotlightCustomColor() {
return (
<div className='relative aspect-video h-[200px] rounded-sm border border-zinc-100 bg-white dark:border-zinc-800 dark:bg-black'>
<Spotlight
className='from-blue-800 via-blue-600 to-blue-400 blur-xl dark:from-blue-900 dark:via-blue-500 dark:to-blue-900'
size={64}
/>
<div className='absolute inset-0'>
<svg className='h-full w-full'>
<defs>
<pattern
id='grid-pattern'
width='8'
height='8'
patternUnits='userSpaceOnUse'
>
<path
xmlns='http://www.w3.org/2000/svg'
d='M0 4H4M4 4V0M4 4H8M4 4V8'
stroke='currentColor'
strokeOpacity='0.3'
className='stroke-white dark:stroke-black'
/>
<rect
x='3'
y='3'
width='2'
height='2'
fill='currentColor'
fillOpacity='0.25'
className='fill-white dark:fill-black'
/>
</pattern>
</defs>
<rect width='100%' height='100%' fill='url(#grid-pattern)' />
</svg>
</div>
</div>
);
}