import Synthesis from "@/components/ui/synthesis";
const settings = {
speed: 0.4,
distortion: 0.6,
complexity: 6,
flowFrequency: 3,
glowIntensity: 0.4,
scale: 1,
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<Synthesis {...s} />
</div>
);
}