A WebGL globe with floating weather emoji markers across the world. Emojis gently bob up and down.
"use client" import { GlobeWeather } from "@/components/ui/component" export default function GlobeWeatherDemo() { 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"> <GlobeWeather /> </div> </div> ) }