Components
Loading preview...
Here is gradient cursor effect
@ui-layouts
npx shadcn@latest add https://21st.dev/r/uilayout.contact/cursor-gradient
import { Component } from "@/components/ui/cursor-gradient"
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center overflow-hidden bg-black text-white">
<Component />
</div>
);
};
export { DemoOne };