Heavy 3D headline rendered as molten chrome — letters wobble with FBM noise while staying readable, pointer creates localized ripples on the surface, and clicking triggers a quick splash wavefront. Floats over an image or video backdrop with a user-selectable HDRI driving the reflections.
import LiquidMetalTypography from '@crazygl/hero-liquid-metal-typography';
export default function Page() {
return (
<LiquidMetalTypography
heading="LIQUID"
chromeTint="#eef2f6"
wobbleAmount={0.3}
envHdri="https://crazygl.com/samples/hdri1.jpg"
/>
);
}heading (only line 1 becomes 3D geometry), subheading, and an optional ctaLabel / onCTAClick.extrudeDepth (letter thickness; bevel auto-scales) and letterSpacing.chromeTint (base F0 reflectance; warm it for gold/copper), wobbleAmount and wobbleSpeed for the molten boil.rippleStrength / rippleRadius for the cursor ripple, splashStrength for the click wavefront.rimIntensity, envIntensity (HDRI reflection strength), and envHdri (the equirectangular panorama the chrome mirrors).backgroundImage (image or video, cover-fit), backgroundOverlay and backgroundOverlayOpacity.headingFontFamily / headingFontWeight (the actual .ttf is fetched and extruded).npm install @crazygl/hero-liquid-metal-typographyThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import LiquidMetalTypography from '@crazygl/hero-liquid-metal-typography';
export default function Landing() {
return (
<LiquidMetalTypography />
);
}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 LiquidMetalTypography from '@crazygl/hero-liquid-metal-typography';
export default function Page() {
return (
<section>
<LiquidMetalTypography
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}