Components
An animated glowing gradient orb rendered on the GPU with a WebGL shader, featuring noise-based color mixing, hue rotation, and a breathing pulse.
Loading preview...
"use client";
import { GradientOrb } from "@/components/ui/gradient-orb";
const Preview = () => {
return (
<div className="h-screen w-full">
<GradientOrb />
</div>
);
};
export default Preview;