Components
Loading preview...
Interactive Canvas with dot pattern frid
npx shadcn@latest add https://21st.dev/r/designali-in/interactive-canvasimport { InteractiveCanvas } from "@/components/ui/interactive-canvas";
export default function DemoOne() {
return (
<div className="flex flex-col justify-center min-h-screen w-full">
<InteractiveCanvas />
<h2 className="w-full absolute py-10 text-center text-5xl font-semibold lg:text-7xl">
Interactive Canvas
</h2>
</div>
);
}