The logo becomes a 3D neon tube sign floating in a dark cinematic scene. Segments flicker on during boot, then settle into a gentle pulse. Smoke drifts behind; hovering brightens the tubes.
import FloatingNeonLogoSign from '@crazygl/hero-floating-neon-logo-sign';
export default function Hero() {
return (
<FloatingNeonLogoSign
heading="Open. After dark."
logo="https://crazygl.com/samples/crazygl.svg"
neonColor="#ff3da4"
bootDuration={2.6}
/>
);
}logo image, sampleMode (alpha / luminosity / inverseLuma), sampleThreshold, sampleDensity, logoScale, logoOffsetX/Y.neonColor, accentColor (hot core), tubeThickness, bloomAmount, tubeBrightness, backgroundColor, transparent.pulseAmount, flickerAmount, bootDuration, pointerBrightness (hover boost), hoverRadius.smokeAmount, smokeColor.npm install @crazygl/hero-floating-neon-logo-signThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import FloatingNeonLogoSign from '@crazygl/hero-floating-neon-logo-sign';
export default function Landing() {
return (
<FloatingNeonLogoSign />
);
}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 FloatingNeonLogoSign from '@crazygl/hero-floating-neon-logo-sign';
export default function Page() {
return (
<section>
<FloatingNeonLogoSign
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}