import {
SpotlightCard,
SpotlightCardContent,
SpotlightCardHeader,
SpotlightCardTitle,
SpotlightCardDescription,
} from "@/components/ui/spotlight-card"
<SpotlightCard className="w-96">
<SpotlightCardHeader>
<SpotlightCardTitle>Spotlight Effect</SpotlightCardTitle>
<SpotlightCardDescription>
Hover over this card to see the spotlight follow your cursor
</SpotlightCardDescription>
</SpotlightCardHeader>
<SpotlightCardContent>
<p className="text-neutral-300 text-sm">
This card features an animated gradient border and a soft
spotlight glow that tracks your mouse movement.
</p>
</SpotlightCardContent>
</SpotlightCard>