import ParticlesWaves from "@/components/ui/threejs-particles-waves";
const settings = {
density: 50,
speed: 1,
amplitude: 50,
separation: 100,
particleColor: "#ffffff",
bgColor: "#000000",
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<ParticlesWaves {...s} />
</div>
);
}