A giant display word that is razor-sharp at the top and melts into a progressively heavier blur toward the bottom — a true variable-radius blur per row, not a gradient-masked copy. Bold, editorial, fully recolourable.
import ProgressiveBlurText from '@crazygl/hero-progressive-blur-text';
export default function Hero() {
return (
<ProgressiveBlurText
text="DRIFT"
eyebrow="Aether Studio"
tagline={"Where sharp ideas soften\ninto something quietly new."}
backgroundColor="#f51d10"
textColor="#0b0b0b"
maxBlur={58}
/>
);
}text (the big word), eyebrow, tagline.maxBlur, blurStart, blurCurve, direction (sharp at top or bottom).fillWidth, position, verticalAdjust, letterSpacing, fontFamily, fontWeight.backgroundColor, transparentBackground, textColor, eyebrowColor, taglineColor.npm install @crazygl/hero-progressive-blur-textThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import ProgressiveBlurText from '@crazygl/hero-progressive-blur-text';
export default function Landing() {
return (
<ProgressiveBlurText />
);
}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 ProgressiveBlurText from '@crazygl/hero-progressive-blur-text';
export default function Page() {
return (
<section>
<ProgressiveBlurText
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}