Your product UI floats as a giant screen at the centre of a dark 3D command room, smaller procedural panels orbit around it, and volumetric spotlights sweep through floor fog while a slow camera dolly breathes life into the scene.
import CommandCenter from '@crazygl/hero-command-center';
export default function Hero() {
return (
<CommandCenter
screenshot="https://example.com/dashboard.avif"
panel1Image="https://example.com/phone-a.avif"
spotColor="#a8c0ff"
fogDensity={0.7}
/>
);
}screenshot (the giant central screen) plus screenshotX/Y, screenshotScale, screenshotTilt, screenEmissive.panel1Image…panel6Image); blank ones are hidden. panelSpread controls orbit distance.spotIntensity, spotSweepSpeed, spotColor for the volumetric beams.fogDensity, fogColor, bloomStrength.dollyAmplitude, dollyPeriod, parallaxStrength.bgColor, transparentBackground.npm install @crazygl/hero-command-centerThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import CommandCenterStage from '@crazygl/hero-command-center';
export default function Landing() {
return (
<CommandCenterStage />
);
}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 CommandCenterStage from '@crazygl/hero-command-center';
export default function Page() {
return (
<section>
<CommandCenterStage
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}