Components
The CoreSection component visually represents the central foundation or “core” of the platform, surrounded by radiating elements that symbolize growth, connection, and innovation. It dynamically adapts to both dark and light themes, maintaining a balanced visual hierarchy across modes. The central glowing core is perfectly aligned for symmetry and focus, creating a visually captivating centerpiece. Smooth animations, layered gradients, and subtle motion effects bring a sense of energy and depth, reflecting the brand’s modern and high-tech identity while emphasizing stability and creativity at its heart.
Loading preview...
"use client";
import NexusOrb from "@/components/ui/nexus-orb-lucide";
export default function NexusOrbDemo() {
return (
<main className="min-h-screen flex flex-col items-center justify-center text-gray-900 dark:text-white">
<h1 className="text-3xl font-semibold mb-10 text-center">
Nexus Orb — Partner Ecosystem Visualization
</h1>
<NexusOrb />
</main>
);
}