Components
A React component that renders a full-screen, interactive particle system using p5.js.. Particles gently follow the mouse pointer, supports light/dark themes, resizes responsively, and respects the user’s reduced-motion setting.
npx @21st-dev/cli add dhileepkumargm/particle-backgroundLoading preview...
import React from 'react'
import ParticleBackground from '@/components/ui/particle-background'
export default function DemoOne() {
return (
<div className="app-container" data-theme="dark">
<ParticleBackground total={500} />
</div>
)
}