Components
npx shadcn@latest add https://21st.dev/r/vaib215/shaders-hero-sectionLoading preview...
"use client"
import {Header, HeroContent, PulsingCircle, ShaderBackground} from "@/components/ui/shaders-hero-section"
export default function ShaderShowcase() {
return (
<ShaderBackground>
<Header />
<HeroContent />
<PulsingCircle />
</ShaderBackground>
)
}