Components
Loading preview...
Here is arrow cursor demo component
@ui-layouts
npx shadcn@latest add https://21st.dev/r/uilayout.contact/arrow-cursor
import { Component } from "@/components/ui/arrow-cursor";
const DemoOne = () => {
return (
<div className="relative flex min-h-screen w-full flex-col items-center justify-center bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 p-8">
<h1 className="text-4xl font-bold mb-4 text-center">Arrow Cursor Demo</h1>
<Component />
</div>
);
};
export { DemoOne };