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.
npx shadcn@latest add https://21st.dev/r/dhileepkumargm/aurora-borealis-shaderLoading 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>
}