Your image or video plays across the inner concave surface of a large, cinematic curved LED wall, lit like a virtual production stage with a subtle LED-pixel grid, floor reflection, and pointer parallax.
import HeroLedWall from '@crazygl/hero-led-wall';
export default function Hero() {
return (
<HeroLedWall
heading="Built for the stage."
wallMedia="/reel.mp4"
wallCurvature={120}
/>
);
}wallMedia (image or video), mediaOffsetX/Y, screenZ (wall depth).wallCurvature (arc °), wallRadius, wallHeight, wallEmissive, pixelGridStrength, pixelDensity.studioLightWarmth, floorReflection, vignetteStrength, transparentBackground, bgColor.parallaxStrength.npm install @crazygl/hero-led-wallThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import HeroVideoOnCurvedLEDWall from '@crazygl/hero-led-wall';
export default function Landing() {
return (
<HeroVideoOnCurvedLEDWall />
);
}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 HeroVideoOnCurvedLEDWall from '@crazygl/hero-led-wall';
export default function Page() {
return (
<section>
<HeroVideoOnCurvedLEDWall
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}