"use client"; export function GlobeAnimation() { return (
{/* Orbit ring 1 */}
{/* Orbit ring 2 */}
{/* Globe */}
{/* Latitude lines */} {[30, 45, 60, 75, 90].map((lat) => { const ry = Math.sin((lat * Math.PI) / 180) * 55; return ( ); })} {/* Longitude lines */} {[0, 30, 60, 90, 120, 150].map((lon) => ( ))} {/* Glow dot */}
); }