Components
A React UI component that renders morphing, glowing liquid blobs—fluid crystal-like shapes that merge and separate—using WebGL2 and GLSL SDF techniques.
npx @21st-dev/cli add dhileepkumargm/liquid-neon-shaderLoading preview...
import React from "react";
import LiquidCrystalBackground from "@/components/ui/liquid-neon-shader";
export default function DemoOne() {
return (
<div className="relative w-screen h-screen bg-background text-foreground font-sans">
{/* Liquid-Crystal background with default settings */}
<LiquidCrystalBackground
speed={0.6}
radii={[0.25, 0.18, 0.3]}
smoothK={[0.2, 0.3]}
/>
</div>
);
}