Components
Loading preview...
A WebGL globe with satellite emoji markers orbiting at elevated positions above the surface.
npx shadcn@latest add https://21st.dev/r/shuding/cobe-globe-satellites"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>
)
}