Ship to every region
Traffic routes to the nearest edge — visualized live across the globe.
World Map
tsx
import { WorldMap } from "@/components/godui/world-map";export function Connections() {return ( <WorldMap connections={[ { start: { lat: 37.7749, lng: -122.4194, label: "San Francisco" }, end: { lat: 51.5074, lng: -0.1278, label: "London" }, }, { start: { lat: 40.7128, lng: -74.006, label: "New York" }, end: { lat: 1.3521, lng: 103.8198, label: "Singapore" }, }, ]} />);}