Components
Loading preview...
Interactive Dots with props
npx shadcn@latest add https://21st.dev/r/designali-in/interactive-dots-1import { InteractiveDots } from "@/components/ui/interactive-dots-1";
export default function DemoOne() {
return (
<main className="w-full flex flex-col items-center justify-center h-screen overflow-hidden">
<InteractiveDots dotColor="#0000ff" dotSize={10} />
<h1 className="absolute text-background text-5xl font-bold">
InteractiveDots
</h1>
</main>
)
}