On a near-white page, thousands of very thin charcoal lines drift along a divergence-free curl-noise flow field, leaving long curved trails that layer into delicate spirograph and flower-like ink patterns. Minimal, monochrome, calm.
import InkFlowField from '@crazygl/hero-ink-flow-field';
export default function Hero() {
return (
<InkFlowField
heading="Carved in calm."
flowScale={1}
trailFade={0.056}
pointerSwirl={0.8}
/>
);
}particleCount, flowScale, flowSpeed, lineWidth, lineDarkness, trailFade (the soul of the look).inkColor, backgroundColor (the paper).pointerSwirl.transparent.npm install @crazygl/hero-ink-flow-fieldThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import InkFlowField from '@crazygl/hero-ink-flow-field';
export default function Landing() {
return (
<InkFlowField />
);
}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 InkFlowField from '@crazygl/hero-ink-flow-field';
export default function Page() {
return (
<section>
<InkFlowField
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}