An animated 3D wireframe sphere with flowing latitude lines and depth-based opacity, built on React Three Fiber.
"use client"; import { GeometricOrb } from "@/components/ui/geometric-orb"; const Preview = () => { return ( <div className="h-screen w-full"> <GeometricOrb /> </div> ); }; export default Preview;