Components
Loading preview...
the SVG Follower component to the main page with a nice centered layout and updated the color palette to use modern hex colors.
npx shadcn@latest add https://21st.dev/r/designali-in/svg-followerimport { SVGFollower } from "@/components/ui/svg-follower";
export default function DemoOne() {
return (
<div className="min-h-screen flex items-center justify-center">
<SVGFollower
colors={["#ff6b6b", "#fff200", "#45b7d1", "#96ceb4", "#ffeaa7"]}
/>
</div>
)
}