import { useState, useEffect } from "react"; import SEO from "@/components/SEO"; import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Link } from "react-router-dom"; import { motion } from "framer-motion"; import { Boxes, BookOpen, Rocket, ArrowRight, Terminal, Layers, Sparkles, Users, Trophy, Database, Gamepad2, Code2, Zap, Globe, } from "lucide-react"; const ecosystemPillars = [ { icon: Boxes, title: "Six Realms", description: "Nexus, GameForge, Foundation, Labs, Corp, and Staff—each with unique APIs and capabilities", href: "/realms", gradient: "from-purple-500 via-purple-600 to-indigo-600", accentColor: "hsl(var(--primary))", }, { icon: Database, title: "Developer APIs", description: "Comprehensive REST APIs for users, content, achievements, and more", href: "/dev-platform/api-reference", gradient: "from-blue-500 via-blue-600 to-cyan-600", accentColor: "hsl(var(--primary))", }, { icon: Terminal, title: "SDK & Tools", description: "TypeScript SDK, CLI tools, and pre-built templates to ship faster", href: "/dev-platform/quick-start", gradient: "from-cyan-500 via-teal-600 to-emerald-600", accentColor: "hsl(var(--primary))", }, { icon: Layers, title: "Marketplace", description: "Premium integrations, plugins, and components from the community", href: "/dev-platform/marketplace", gradient: "from-emerald-500 via-green-600 to-lime-600", accentColor: "hsl(var(--primary))", }, { icon: Users, title: "Community", description: "Join 12,000+ developers building on AeThex", href: "/community", gradient: "from-amber-500 via-orange-600 to-red-600", accentColor: "hsl(var(--primary))", }, { icon: Trophy, title: "Opportunities", description: "Get paid to build—contracts, bounties, and commissions", href: "/opportunities", gradient: "from-pink-500 via-rose-600 to-red-600", accentColor: "hsl(var(--primary))", }, ]; const stats = [ { value: "12K+", label: "Developers" }, { value: "2.5M+", label: "API Calls/Day" }, { value: "150+", label: "Code Examples" }, { value: "6", label: "Realms" }, ]; const features = [ { icon: Layers, title: "Cross-Platform Integration Layer", description: "One unified API to build across Roblox, VRChat, RecRoom, Spatial, Decentraland, The Sandbox, Minecraft, Meta Horizon, Fortnite, and Zepeto—no more managing separate platform SDKs or gated gardens", }, { icon: Code2, title: "Enterprise-Grade Developer Tools", description: "TypeScript SDK, REST APIs, unified authentication, cross-platform achievements, content delivery, and CLI tools—all integrated and production-ready", }, { icon: Gamepad2, title: "Six Specialized Realms", description: "Nexus (social hub), GameForge (games), Foundation (education), Labs (AI/innovation), Corp (business), Staff (governance)—each with unique APIs and tools", }, { icon: Trophy, title: "Monetize Your Skills", description: "Get paid to build—access contracts, bounties, and commissions. 12K+ developers earning while creating cross-platform games, apps, and integrations", }, { icon: Users, title: "Thriving Creator Economy", description: "Join squads, collaborate on projects, share assets in the marketplace that work across all platforms, and grow your reputation across all six realms", }, { icon: Rocket, title: "Ship Everywhere, Fast", description: "150+ cross-platform code examples, pre-built templates for VRChat, RecRoom, Spatial, Decentraland, The Sandbox, Roblox, and more—OAuth integration, Supabase backend, and one-command deployment to every metaverse", }, ]; export default function Index() { const [mousePosition, setMousePosition] = useState({ x: 0, y: 0 }); const [hoveredCard, setHoveredCard] = useState(null); useEffect(() => { const handleMouseMove = (e: MouseEvent) => { setMousePosition({ x: e.clientX, y: e.clientY }); }; window.addEventListener("mousemove", handleMouseMove); return () => window.removeEventListener("mousemove", handleMouseMove); }, []); return ( {/* Animated Background */}
{/* Cyber Grid */}
{/* Scanlines */}
{/* Corner Accents */}
AeThex Developer Ecosystem

Build on
AeThex

The integration layer connecting all metaverse platforms.
Six specialized realms. 12K+ developers. One powerful ecosystem.
{/* Platform Highlights */}
Roblox
Minecraft
Meta Horizon
Fortnite
Zepeto
& More
{stats.map((stat, i) => (

{stat.value}

{stat.label}

))}

The AeThex Ecosystem

Six interconnected realms, each with unique capabilities and APIs to power your applications

{ecosystemPillars.map((pillar, index) => ( setHoveredCard(index)} onMouseLeave={() => setHoveredCard(null)} >
{hoveredCard === index && ( )}

{pillar.title}

{pillar.description}

Explore
))}

Why Build on AeThex?

Join a growing ecosystem designed for creators, developers, and entrepreneurs

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Animated Background */}
{/* Animated Grid */}
{/* Glowing Orb */}
Start Building Today Ready to Build Something
Epic?
Get your API key and start deploying across 5+ metaverse platforms in minutes
); }