Your logo rendered as a live thermal-camera image — a flowing heat field clipped to the silhouette and mapped through a cold-to-white-hot gradient, with the cursor leaving a glowing heat trail that slowly cools.
import ThermalLogo from '@crazygl/hero-thermal-logo';
export default function Page() {
return (
<ThermalLogo
logo="/brand/logo.png"
sampleMode="alpha"
colorHot="#ffce3a"
/>
);
}The silhouette is pulled from your image, so transparent SVGs, transparent PNGs, and dark-art-on-light PNGs all work — pick the right sampleMode.
logo (SVG/PNG URL), sampleMode (alpha / luminosity / inverse-luminosity), maskThreshold, logoScale.speed, angle (wave direction), innerGlow (body heat), outerGlow (halo size), contour (edge heat), noise (grain).pointerHeat, pointerRadius, coolSeconds (trail fade time).colorCold → colorPeak, walked by temperature.backgroundColor, transparentBackground, plus optional heading/custom content.npm install @crazygl/hero-thermal-logoThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import ThermalLogo from '@crazygl/hero-thermal-logo';
export default function Landing() {
return (
<ThermalLogo />
);
}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 ThermalLogo from '@crazygl/hero-thermal-logo';
export default function Page() {
return (
<section>
<ThermalLogo
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}