Components
Loading preview...
A WebGL globe with progress bar cards anchored to city markers showing completion percentages.
npx shadcn@latest add https://21st.dev/r/shuding/cobe-globe-bars"use client"
import { GlobeBars } from "@/components/ui/component"
export default function GlobeBarsDemo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-white p-8 overflow-hidden">
<div className="w-full max-w-lg">
<GlobeBars />
</div>
</div>
)
}