Multiple frames behave like a cinematic contact sheet, bending through depth and holding a warm editorial mood.
import CinematicContactSheet from '@crazygl/hero-cinematic-contact-sheet';
export default function Page() {
return (
<CinematicContactSheet
heading={"Every frame\nstill counts."}
screenshot1="/shots/one.avif"
screenshot2="/shots/two.avif"
flipCycle
cycleInterval={2.9}
/>
);
}contentType (heading / two-columns / custom), heading, subheading.screenshot1…screenshot5, the images on each card (1 is front).cardCount, stackOffsetX/Y/Z, cardSize, groupOffsetX/Y, cardCornerRadius.flipCycle, cycleInterval (seconds between flips).cursorTilt pointer parallax, ambientFloat continuous bob.edgeGlowColor/edgeGlowStrength, shadowStrength, keyColor, fillColor, screenBrightness.bgTop, bgBottom gradient.npm install @crazygl/hero-cinematic-contact-sheetThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import CinematicContactSheet from '@crazygl/hero-cinematic-contact-sheet';
export default function Landing() {
return (
<CinematicContactSheet />
);
}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 CinematicContactSheet from '@crazygl/hero-cinematic-contact-sheet';
export default function Page() {
return (
<section>
<CinematicContactSheet
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}