Components
Loading preview...
transforms the simple pulsing rings into a dynamic, fluid animation. The rings now warp and breathe, the entire scene slowly rotates, and a rich, shifting color palette of electric blues and magentas replaces the original monochrome look. I've also added a subtle noise grain for a richer texture.
@dhiluxui
npx shadcn@latest add https://21st.dev/r/dhileepkumargm/neno-shaderimport React, { useState, useCallback } from 'react';
import { ShaderAnimation } from "@/components/ui/neno-shader";
export default function DemoOne() {
return (
<div className="relative flex h-screen w-full flex-col items-center justify-center overflow-hidden">
<ShaderAnimation/>
<span className="absolute pointer-events-none z-10 text-center text-5xl md:text-7xl leading-none font-semibold tracking-tighter whitespace-pre-wrap text-white">
Gaming vibe Shader
</span>
</div>
)
}