Components
Loading preview...
This is animated shape
@shailendrakumar19999
npx shadcn@latest add https://21st.dev/r/shailendrakumar19999/animated-shapeimport { Shadow } from "@/components/ui/animated-shape";
export default function DemoOne() {
return (
<div className="flex w-full items-center justify-center min-h-screen bg-gray-900">
<div className="text-white">
<h1 className="text-2xl font-bold mb-8 text-center">
Animated Shadow Demo
</h1>
<Shadow className="w-80 h-28" />
</div>
</div>
);
}