A WebGL globe with satellite emoji markers orbiting at elevated positions above the surface.
"use client" import { GlobeSatellites } from "@/components/ui/component" export default function GlobeSatellitesDemo() { 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"> <GlobeSatellites /> </div> </div> ) }