import { useState } 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: "Specialized APIs for every use case", href: "/realms", gradient: "from-purple-500 via-purple-600 to-indigo-600", accentColor: "hsl(var(--primary))", }, { icon: Database, title: "Developer APIs", description: "REST APIs for all platforms", 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: "Ship faster with TypeScript SDK", 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 plugins & integrations", href: "/dev-platform/marketplace", gradient: "from-emerald-500 via-green-600 to-lime-600", accentColor: "hsl(var(--primary))", }, { icon: Users, title: "Community", description: "12K+ developers building together", 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", 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", description: "One API for all metaverse platforms", }, { icon: Code2, title: "Enterprise Developer Tools", description: "Production-ready SDK and APIs", }, { icon: Gamepad2, title: "Six Specialized Realms", description: "Unique APIs for every use case", }, { icon: Trophy, title: "Monetize Your Skills", description: "12K+ developers earning on AeThex", }, { icon: Users, title: "Creator Economy", description: "Collaborate and grow your reputation", }, { icon: Rocket, title: "Ship Fast", description: "150+ examples and one-click deployment", }, ]; export default function Index() { const [hoveredCard, setHoveredCard] = useState(null); 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 with unique APIs

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

{pillar.title}

{pillar.description}

Explore
))}

Why Build on AeThex?

Built for creators and developers

{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
); }