A spring-driven 3D tilt glass panel that follows the cursor, for hero cards and feature highlights.
import { VectorTiltScene } from "@/components/ui/vector-tilt-scene"; export default function Default() { return ( <div className="flex min-h-[420px] w-full items-center justify-center bg-zinc-950 p-10"> <div className="w-full max-w-sm"> <VectorTiltScene /> </div> </div> ); }