Components
Loading preview...
A WebGL globe with clickable markers that expand to show user counts. Click markers to toggle detail panels.
npx shadcn@latest add https://21st.dev/r/shuding/cobe-globe-interactive"use client"
import { GlobeInteractive } from "@/components/ui/component"
export default function GlobeInteractiveDemo() {
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">
<GlobeInteractive />
</div>
</div>
)
}