Install component
import { Spotlight } from "@/components/ui/spotlight"; function SpotlightCard() { return ( <div className='relative aspect-video h-[200px] rounded 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> ); } function SpotlightBorder() { return ( <div className='relative aspect-video h-[200px] overflow-hidden rounded-xl bg-zinc-300/30 p-[1px] dark:bg-zinc-700/30'> <Spotlight className='from-blue-600 via-blue-500 to-blue-400 blur-3xl dark:from-blue-200 dark:via-blue-300 dark:to-blue-400' size={124} /> <div className='relative h-full w-full rounded-xl bg-white dark:bg-black'></div> </div> ); } export { SpotlightCard, SpotlightBorder };