Components
A full-screen, dynamic nebula background generated from Lissajous curves and radial swirls. Loads Three.js from CDN, and cycles through a custom color palette.
npx @21st-dev/cli add dhileepkumargm/lissajous-nebula-shaderLoading preview...
import React from "react";
import { LissajousNebulaShader } from "@/components/ui/lissajous-nebula-shader";
export default function DemoOne() {
return (
<div className="w-screen h-screen bg-background">
<LissajousNebulaShader />
</div>
);
}