Tilted-projection brass orrery — concentric orbit rings, planets at parametric positions, slow shadows. The cursor tilts the assembly.
import MechanicalOrrery from '@crazygl/hero-orrery';
export default function Hero() {
return (
<MechanicalOrrery
heading="Clockwork."
orbitCount={5}
tilt={0.5}
/>
);
}heading + subheading, two columns, or a custom node.ringColor, planetColor, accentColor (sun + glints), orbitCount, tilt, ringThickness, speed, glow.bgTop/bgBottom gradient or transparent.npm install @crazygl/hero-orreryThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import MechanicalOrrery from '@crazygl/hero-orrery';
export default function Landing() {
return (
<MechanicalOrrery />
);
}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 MechanicalOrrery from '@crazygl/hero-orrery';
export default function Page() {
return (
<section>
<MechanicalOrrery
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}