Ink clouds drifting through water — domain-warped FBM noise, layered with transparency, slowly evolving so the silhouettes never repeat.
import FloatingInk from '@crazygl/hero-floating-ink';
export default function Page() {
return (
<FloatingInk
heading="Ink in water."
inkA="#4d18ff"
inkB="#ff3aa1"
inkC="#19e0ff"
warp={1.4}
speed={0.4}
/>
);
}contentType, heading, subheading, columns / custom node.transparent background toggle, waterColor, three ink colours inkA/inkB/inkC.density, scale (cloud feature size), speed (drift), warp (domain-warp amount).pointerInjection (strength of the cursor's local ink boost).npm install @crazygl/hero-floating-inkThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import FloatingInk from '@crazygl/hero-floating-ink';
export default function Landing() {
return (
<FloatingInk />
);
}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 FloatingInk from '@crazygl/hero-floating-ink';
export default function Page() {
return (
<section>
<FloatingInk
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}