Components
This card features animated border elements that continuously move around the perimeter, creating a dynamic visual effect using React and Tailwind CSS.
Loading preview...
import AnimatedCard from "@/components/ui/dynamic-border-animations-card";
const DemoOne = () => {
return (
<div className="min-h-screen w-full flex items-center justify-center bg-gradient-to-br from-gray-900 to-gray-800 p-4">
<AnimatedCard />
</div>
);
};
export { DemoOne };