Components
Loading preview...
A dark-themed WebGL globe with animated pulsing rings at marker locations. Concentric rings expand and fade out.
npx shadcn@latest add https://21st.dev/r/shuding/cobe-globe-pulse"use client"
import { GlobePulse } from "@/components/ui/component"
export default function GlobePulseDemo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-black p-8 overflow-hidden">
<div className="w-full max-w-lg">
<GlobePulse />
</div>
</div>
)
}