Components
A 3D globe animation is an interactive, rotating model of the Earth rendered in three dimensions. It visually represents global data—such as user locations, real-time activity, or network connections—using dynamic elements like pins, arcs, or glowing dots. Often built with WebGL or libraries like Three.js, it's used in dashboards, websites, or apps to provide an engaging and informative way to explore geographic information.
Loading preview...
import { Component } from "@/components/ui/3d-globe-animated";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component />
</div>
);
};
export { DemoOne };