Thousands of small white dots are spread evenly over a sphere with a Fibonacci spiral, then a vortex field swirls and pulls them toward a focal point — they spiral, streak, and bunch up like matter falling into an accretion disc. Crisp, monochrome, and scientific on pure black.
import VortexParticleSphere from '@crazygl/hero-vortex-particle-sphere';
export default function Page() {
return (
<VortexParticleSphere
particleCount={6000}
vortexStrength={0.23}
dotColor="#e8e8ec"
/>
);
}particleCount, pointSize, dotColor.rotateSpeed (sphere spin), vortexStrength (pull/streak), vortexTightness (funnel focus).glow (additive halo), pointerGlow (cursor lens), sphereScale, positionX (shift so copy sits beside the sphere).transparent and backgroundColor.npm install @crazygl/hero-vortex-particle-sphereThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import VortexParticleSphere from '@crazygl/hero-vortex-particle-sphere';
export default function Landing() {
return (
<VortexParticleSphere />
);
}The wrapper renders static HTML on the server and only initialises the canvas after hydration, so search engines see your copy.
// app/page.tsx — works in SSR-first frameworks (Next, Remix, Astro, etc.)
'use client';
import VortexParticleSphere from '@crazygl/hero-vortex-particle-sphere';
export default function Page() {
return (
<section>
<VortexParticleSphere
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}