Components
A WebGL-powered animated cloud gradient that renders a soft, flowing sky-like background using layered noise and color blending.
Loading preview...
import Cloudscape from "@/components/ui/cloudscape";
export default function CloudscapeDemo() {
return (
<div className="relative w-full">
<Cloudscape height="500px" className="rounded-xl">
<div className="relative z-10 mx-auto flex w-full max-w-3xl flex-col items-center px-6 text-center">
<h1 className="text-4xl font-semibold tracking-tight text-white drop-shadow-md sm:text-6xl">
Cloudscape
</h1>
<p className="mt-4 max-w-xl text-base text-white/80 drop-shadow sm:text-lg">
A WebGL-powered animated cloud gradient for soft, flowing sky-like
backgrounds.
</p>
</div>
</Cloudscape>
</div>
);
}