Components
Loading preview...
A stunning hero section that morphs from a scattered layout to a circle, and finally to a scroll-driven interactive rainbow arc.
@prashantsom75
npx shadcn@latest add https://21st.dev/r/prashantsom75/scroll-morph-hero"use client";
import IntroAnimation from "../components/ui/scroll-morph-hero";
export default function Demo() {
return (
<div className="w-full h-[800px] border rounded-lg overflow-hidden relative">
<IntroAnimation />
</div>
);
}