import RhythmicRipplesBackground from "@/components/ui/rhythmic-ripples-background";
const settings = {
backgroundColor: "#030303",
rippleColor: "rgba(130, 130, 180, 0.3)",
rippleCount: 20,
rippleSpeed: 0.5,
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<RhythmicRipplesBackground {...s}>
<span />
</RhythmicRipplesBackground>
</div>
);
}