Digital Binary Wave

Customizable flowing sea of 0s and 1s

Controls
Customize the binary wave effect

Higher values create more complex wave patterns

Colors
Customize the color scheme
Usage Example
How to use the DigitalBinaryWave component
import DigitalBinaryWave from '@/components/digital-binary-wave'

export default function MyComponent() {
  return (
    <DigitalBinaryWave
      width={800}
      height={400}
      density={150}
      speed={1}
      waveAmplitude={30}
      waveFrequency={0.02}
      fontSize={14}
      colors={{
        background: "#000000",
        primary: "#00ff41",
        secondary: "#008f11"
      }}
    />
  )
}