Components
Loading preview...
A Vercel-style WebGL globe with spinning 3D pyramid markers at edge regions and live traffic stats on arcs.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/cobe-globe-cdn"use client"
import { GlobeCdn } from "@/components/ui/cobe-globe-cdn"
export default function GlobeCdnDemo() {
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">
<GlobeCdn />
</div>
</div>
)
}