A glowing ray-marched glass sphere with refracted, dispersed inner orbits of data points — a living analytics engine that reacts to the cursor.
import LiquidDataCore from '@crazygl/hero-liquid-data-core';
export default function Page() {
return (
<LiquidDataCore
heading="Your data, alive."
tintColor="#6ab2ff"
dispersion={0.45}
ior={1.34}
/>
);
}npm install @crazygl/hero-liquid-data-coreThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import LiquidDataCore from '@crazygl/hero-liquid-data-core';
export default function Landing() {
return (
<LiquidDataCore />
);
}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 LiquidDataCore from '@crazygl/hero-liquid-data-core';
export default function Page() {
return (
<section>
<LiquidDataCore
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}