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", }, { icon: Database, title: "Developer APIs", description: "Comprehensive REST APIs for users, content, achievements, and more", href: "/dev-platform/api-reference", }, { icon: Terminal, title: "SDK & Tools", description: "TypeScript SDK, CLI tools, and pre-built templates to ship faster", href: "/dev-platform/quick-start", }, { icon: Layers, title: "Marketplace", description: "Premium integrations, plugins, and components from the community", href: "/dev-platform/marketplace", }, { icon: Users, title: "Community", description: "Join 12,000+ developers building on AeThex", href: "/community", }, { icon: Trophy, title: "Opportunities", description: "Get paid to build — contracts, bounties, and commissions", href: "/opportunities", }, ]; 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", }, { 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, and grow your reputation across all six realms", }, { icon: Rocket, title: "Ship Everywhere, Fast", description: "150+ cross-platform code examples, pre-built templates, OAuth integration, Supabase backend — one-command deployment to every metaverse", }, ]; const platforms = ["Roblox", "Minecraft", "Meta Horizon", "Fortnite", "VRChat", "Zepeto"]; const platformIcons = [Gamepad2, Boxes, Globe, Zap, Users, Sparkles]; export default function Index() { return ( {/* Static background — radial glow only; grid/scanlines come from body::after/::before in global.css */}
{/* Hero */}
AeThex Developer Ecosystem Build on{" "} AeThex The integration layer connecting all metaverse platforms. Six specialized realms. 12K+ developers. One powerful ecosystem. {/* Platform pills */} {platforms.map((name, i) => { const Icon = platformIcons[i]; return (
{name}
); })}
& More
{/* CTAs */} {/* Stats */} {stats.map((stat) => (

{stat.value}

{stat.label}

))}
{/* Ecosystem Pillars */}

The AeThex Ecosystem

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

{ecosystemPillars.map((pillar, index) => (

{pillar.title}

{pillar.description}

Explore
))}
{/* Why AeThex */}

Why Build on AeThex?

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

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

{feature.title}

{feature.description}

))}
{/* CTA */}
Start Building Today

Ready to Build Something{" "} Epic?

Get your API key and start deploying across{" "} 5+ metaverse platforms in minutes

); }