Components
MonoField is a text‑free, theme‑aware generative canvas that renders a living, monochrome grid which subtly warps toward the cursor. Built with a lightweight fragment shader, it stays transparent so your page background shows through, making it ideal for hero sections or section breaks without distracting UI. Controls like density, line thickness, and lens strength let you tune the feel—from quiet ambient motion to a more pronounced “magnetic” effect—while keeping the palette strictly black/white across light and dark themes.
Loading preview...
"use client";
import FluxOrb from "@/components/ui/flux-orb";
export default function FluxOrbDemo() {
return (
<FluxOrb className="h-[80vh]" />
);
}