Phrase rendered as physical keyboard keys — each cap presses down on a stagger like someone typing it out for you.
import KeyboardKeys from '@crazygl/hero-keyboard-keys';
export default function Page() {
return (
<KeyboardKeys
phrase="TYPE TO BUILD"
subheading="shortcuts for the modern web"
stepMs={220}
keySize={84}
/>
);
}phrase, subheading.stepMs (interval between key presses).keyColor, keyTextColor, keyBorder, subColor, keySize, headingFontFamily, headingFontWeight.transparentBackground, bgColor.npm install @crazygl/hero-keyboard-keysThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import KeyboardKeys from '@crazygl/hero-keyboard-keys';
export default function Landing() {
return (
<KeyboardKeys />
);
}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 KeyboardKeys from '@crazygl/hero-keyboard-keys';
export default function Page() {
return (
<section>
<KeyboardKeys
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}