Components
Loading preview...
A dynamic views counter card featuring an animated dot traversing the border, gradient-highlighted count display, and stylized corner lines for a sci-fi UI effect
npx shadcn@latest add https://21st.dev/r/minhxthanh/moving-dot-cardimport DotCard from "@/components/ui/moving-dot-card";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<DotCard />
</div>
);
};
export { DemoOne };