Components
Loading preview...
A WebGL globe with colorful rotated text labels anchored to locations. Each label has a candy-like glossy style.
npx shadcn@latest add https://21st.dev/r/shuding/cobe-globe-labels"use client"
import { GlobeLabels } from "@/components/ui/component"
export default function GlobeLabelsDemo() {
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">
<GlobeLabels />
</div>
</div>
)
}