import AnimatedDots from "@/components/ui/animated-dots";
const settings = { dotsNum: 60, dotRadius: 10, dotSpacing: 0, opacity: 1 };
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<AnimatedDots {...s} fullScreen={false} />
</div>
);
}