Your product dashboard, tilted in 3D space, scanned into existence by a soft blue-purple light beam. A glowing uplight underneath and a subtle floor reflection complete the look.
import FloatingDashboardWithLightBeamReveal from '@crazygl/hero-dashboard-light-beam';
export default function Page() {
return (
<FloatingDashboardWithLightBeamReveal
screenshot="/shots/dashboard-dark.avif"
heading="See your numbers, lit."
subheading="Real-time. Beautifully presented."
beamColor="#7080ff"
cardTilt={13}
/>
);
}heading/subheading, two-column, or custom node.screenshot media (dark dashboards read most cinematic; non-16:9 framed not stretched).beamColor, beamDuration, beamWidth, beamIntensity, loopBeam, loopBeamPeriod.cardScale, cardTilt, screenshotX/Y, screenEmissive.underlightStrength, underlightCool, underlightWarm, floorReflection.parallaxStrength, transparentBackground, bgTop, bgBottom.npm install @crazygl/hero-dashboard-light-beamThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import FloatingDashboardWithLightBeamReveal from '@crazygl/hero-dashboard-light-beam';
export default function Landing() {
return (
<FloatingDashboardWithLightBeamReveal />
);
}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 FloatingDashboardWithLightBeamReveal from '@crazygl/hero-dashboard-light-beam';
export default function Page() {
return (
<section>
<FloatingDashboardWithLightBeamReveal
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}