Heading that comes in word-by-word — each word lifts out of a deep blur and slides into focus on a small stagger.
import WordBlur from '@crazygl/hero-word-blur';
export default function Hero() {
return (
<WordBlur
heading="We design with intent and ship with confidence."
wordDuration={700}
staggerMs={90}
blurAmount={18}
/>
);
}heading, subheading.wordDuration (per-word in-time), staggerMs (lag between words), blurAmount (start blur px), yOffset (lift px), loopDelay (0 = play once).textColor, subColor, fontSize, headingFontFamily, headingFontWeight, lineHeight.transparentBackground, bgColor.npm install @crazygl/hero-word-blurThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import WordBlur from '@crazygl/hero-word-blur';
export default function Landing() {
return (
<WordBlur />
);
}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 WordBlur from '@crazygl/hero-word-blur';
export default function Page() {
return (
<section>
<WordBlur
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}