Components
Loading preview...
Here is spotlight cursor effect
@ui-layouts
npx shadcn@latest add https://21st.dev/r/uilayout.contact/spotlight-cursorimport { Component } from "@/components/ui/spotlight-cursor";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center bg-black overflow-hidden">
<h1 className="text-white text-4xl font-bold z-10 pointer-events-none">Move your mouse!</h1>
<Component />
</div>
);
};
export { DemoOne };