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
import 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 };