// demo.tsx
import { Component } from "@/components/ui/particles";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center bg-neutral-900">
<div style={{ width: '100%', height: '100%', position: 'relative' }}>
<Component
particleColors={['#ffffff', '#ffffff']}
particleCount={200}
particleSpread={10}
speed={0.1}
particleBaseSize={100}
moveParticlesOnHover={true}
alphaParticles={false}
disableRotation={false}
/>
</div>
</div>
);
};
export { DemoOne };