A single extruded 3D word sits in the centre of the stage with a glassy candy finish under a RoomEnvironment studio. Move the cursor horizontally and the whole word rotates to face you; move vertically and each letter individually leans toward the cursor — closer letters bend more.
import TypographicTransformer from '@crazygl/hero-typographic-3d-transformer';
export default function Landing() {
return (
<TypographicTransformer
word="HELLO"
letterColor="#ffffff"
clearcoat={1}
/>
);
}word (3–6 letters read best), letterColor, letterRoughness, letterMetalness, clearcoat, extrudeDepth, letterSpacing.rotateStrength (whole-word yaw), tiltStrength (per-letter lean), springDamping.keyIntensity / keyColor, rimIntensity, fillIntensity.transparent, backgroundTop / backgroundBottom.npm install @crazygl/hero-typographic-3d-transformerThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import Typographic3DTransformer from '@crazygl/hero-typographic-3d-transformer';
export default function Landing() {
return (
<Typographic3DTransformer />
);
}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 Typographic3DTransformer from '@crazygl/hero-typographic-3d-transformer';
export default function Page() {
return (
<section>
<Typographic3DTransformer
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}