A 3D product model rests on a minimal floating pedestal under studio HDRI lighting. Slow turntable rotation, soft contact shadow, drifting dust, subtle mouse parallax, and press-and-drag to free-spin the product.
import ProductPedestal from '@crazygl/hero-product-pedestal';
export default function Page() {
return (
<ProductPedestal
heading="Introducing the new iPhone."
productModel="https://crazygl.com/samples/nokia-phone.glb"
environmentImage="https://crazygl.com/samples/hdri1.avif"
/>
);
}productModel (GLB/GLTF, auto-fit, authored PBR preserved), productScale, turntableSpeed, productMetallic, productRoughness.environmentImage (equirect HDRI), envIntensity, exposure, keyLight*/fillLight*.pedestalColor, pedestalRadius, pedestalThickness, pedestalMetallic, pedestalRoughness, pedestalEmissive, rimGlow.layout, positionX/Y, cameraTilt (stage tilt), cameraDistance, modelHeight, dragInertia.dustCount/dustColor/dustIntensity, pointerTilt, transparent, bgTopColor/bgBottomColor.npm install @crazygl/hero-product-pedestalThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import ProductPedestal from '@crazygl/hero-product-pedestal';
export default function Landing() {
return (
<ProductPedestal />
);
}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 ProductPedestal from '@crazygl/hero-product-pedestal';
export default function Page() {
return (
<section>
<ProductPedestal
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}