Components
This "Aurora Borealis" shader simulates the ethereal, shifting curtains of the Northern Lights. It's interactive, reacting to your mouse movements by creating brighter, more intense flares in the aurora, as if your cursor is disturbing a celestial energy field.
Loading preview...
import AuroraBorealisShader from "@/components/ui/aurora-borealis-shader";
export default function DemoOne() {
return <div className="app-container">
<AuroraBorealisShader />
<div className="overlay-content">
<h1 className="title">Aurora Borealis</h1>
<p className="description">An Interactive WebGL Shader</p>
</div>
</div>
}