Three concentric rings of text spinning at independent speeds, with a centred wordmark and accent dots — a fully composed badge.
import CircularTextPro from '@crazygl/hero-circular-text-pro';
export default function Hero() {
return (
<CircularTextPro
ring1Text="EST · 2026 · CRAZYGL · STUDIO · "
centerText="PRO"
ring2Reverse
/>
);
}ring1Text, ring2Text, ring3Text (each repeated around its circle) and centerText.ring1Speed, ring2Speed, ring3Speed (seconds per turn) and ring2Reverse to counter-rotate the middle ring.centerColor, plus headingFontFamily and headingFontWeight.transparentBackground or a solid bgColor.npm install @crazygl/hero-circular-text-proThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import CircularTextPro from '@crazygl/hero-circular-text-pro';
export default function Landing() {
return (
<CircularTextPro />
);
}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 CircularTextPro from '@crazygl/hero-circular-text-pro';
export default function Page() {
return (
<section>
<CircularTextPro
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}