A WebGL globe with emoji stickers anchored to city markers. Stickers float and rotate as the globe spins.
"use client" import { GlobeStickers } from "@/components/ui/component" export default function GlobeStickersDemo() { 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"> <GlobeStickers /> </div> </div> ) }