A WebGL globe with clickable markers that expand to show user counts. Click markers to toggle detail panels.
"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> ) }