A bold centered headline anchors a 3D system of keyword satellites. Each orbit word travels its own tilted ellipse around the center; hover pulls a word forward and lights up the rest of the constellation.
import OrbitingWordSystem from '@crazygl/hero-orbiting-word-system';
export default function Page() {
return (
<OrbitingWordSystem
heading="Build orbits."
orbitWords={'Realtime\nAnalytics\nPayments\nWorkflows\nSearch\nAuth'}
orbitSpeed={0.3}
/>
);
}heading, subheading, ctaLabel, onCTAClick, CTA colors.orbitWords (one per line, up to 16) plus onWord1Click–onWord8Click.orbitMinRadius, orbitMaxRadius, orbitTiltVariation.orbitSpeed, orbitDirection (clockwise / counterclockwise / mixed).hoverScale, hoverDuration, relatedGlow.transparent, bgColor, headingColor, orbitWordColor, orbitWordHoverColor, starfieldDensity.headingFontFamily/Weight, orbitWordFontFamily/Weight.npm install @crazygl/hero-orbiting-word-systemThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import OrbitingWordSystem from '@crazygl/hero-orbiting-word-system';
export default function Landing() {
return (
<OrbitingWordSystem />
);
}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 OrbitingWordSystem from '@crazygl/hero-orbiting-word-system';
export default function Page() {
return (
<section>
<OrbitingWordSystem
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}