'use client';
import DigitStream from "@/components/ui/digit-stream";
const settings = {
particleCount: 750,
speed: 0.4,
flowStrength: 0.5,
disperseStrength: 1,
idleDim: 0.6,
snakeAmplitude: 0.5,
color: '#ebeeff',
background: '#000000',
colorfulSparks: true,
};
// ONLY DEFAULT EXPORT WILL BE TREATED AS A DEMO
export default function DemoOne(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return <DigitStream {...s} />;
}