A cyberpunk poster: any screenshot or photograph is overlaid with RGB channel splitting, horizontal slice glitches, soft CRT scanlines, and digital grain. The pointer ramps the chaos up — perfect for launch campaigns, agencies, gaming, and music.
import GlitchHeroPoster from '@crazygl/hero-glitch-poster';
export default function Page() {
return (
<GlitchHeroPoster
image="/shots/product.avif"
heading="BREAK / BUILD."
subheading="A new product. A new aesthetic. A new era."
highlightTint="#ff3c8a"
/>
);
}image (cover-fit), imageScale, imageBrightness.caStrength, caHueShift.sliceFrequency, sliceIntensity, sliceSpeed.scanlineStrength, grainStrength.hoverBoost, hoverDistortion.shadowTint, highlightTint, gradeStrength.vignetteStrength, transparentBackground.npm install @crazygl/hero-glitch-posterThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import GlitchHeroPoster from '@crazygl/hero-glitch-poster';
export default function Landing() {
return (
<GlitchHeroPoster />
);
}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 GlitchHeroPoster from '@crazygl/hero-glitch-poster';
export default function Page() {
return (
<section>
<GlitchHeroPoster
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}