Components
Loading preview...
Dot Sphere with props
npx shadcn@latest add https://21st.dev/r/designali-in/dot-sphereimport { DotSphere } from "@/components/ui/dot-sphere";
export default function DemoOne() {
return (
<main className="relative w-full h-screen overflow-hidden">
<DotSphere
dotGap={10}
sphereRadius={200}
dotRadiusMax={5}
speed={1}
bgColor="blue"
dotColor="white"
followMouse={true}
/>
</main>
)
}