import React from "react"; import { Link } from "react-router-dom"; import Layout from "@/components/Layout"; import SEO from "@/components/SEO"; import { Button } from "@/components/ui/button"; import { CodeBlock } from "@/components/dev-platform/ui/CodeBlock"; import { ApiEndpointCard } from "@/components/dev-platform/ui/ApiEndpointCard"; import { StatCard } from "@/components/dev-platform/ui/StatCard"; import { Callout } from "@/components/dev-platform/ui/Callout"; import { BookOpen, Code2, Package, LayoutTemplate, Zap, Users, Gamepad2, ArrowRight, CheckCircle, } from "lucide-react"; export default function DevLanding() { const exampleCode = `import { AeThex } from '@aethex/sdk'; const game = new AeThex.Game({ apiKey: process.env.AETHEX_API_KEY }); game.onPlayerJoin((player) => { console.log(\`\${player.username} joined!\`); }); // Deploy to all platforms with one command await game.deploy(['roblox', 'fortnite', 'web']);`; const features = [ { icon: Zap, title: "Cross-Platform Deployment", description: "Deploy to Roblox, Fortnite, Web, and Mobile with one command", }, { icon: Users, title: "Unified Identity", description: "AeThex Passport provides seamless authentication across all platforms", }, { icon: Gamepad2, title: "Game State Sync", description: "Automatically sync player progress across all platforms", }, { icon: Code2, title: "Developer-First API", description: "Clean, intuitive API with TypeScript support built-in", }, ]; return ( {/* Hero Section */}

Build Once.{" "} Deploy Everywhere.

The complete developer platform for building cross-platform games with AeThex. Ship to Roblox, Fortnite, Web, and Mobile from a single codebase.

{/* Stats */}
12K+
Games Deployed
50K+
Developers
5M+
Monthly Players
{/* Code Example Section */}

Simple. Powerful. Universal.

Write your game logic once using the AeThex SDK, then deploy to all major platforms with a single command. No platform-specific code required.

    {[ "TypeScript-first with full IntelliSense support", "Real-time multiplayer built-in", "Automatic state synchronization", "Cross-platform identity management", ].map((feature, index) => (
  • {feature}
  • ))}
{/* Features Grid */}

Everything You Need

Build production-ready games with enterprise-grade infrastructure

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

{feature.title}

{feature.description}

))}
{/* Developer Tools */}

Developer Tools

Everything you need to build, test, and deploy your games

Documentation

Comprehensive guides and tutorials

API Reference

Complete API documentation

SDK

SDKs for all platforms

Templates

Starter projects and boilerplates

{/* API Showcase */}

Powerful API

RESTful API with intuitive endpoints

{/* CTA Section */}

Ready to Start Building?

Join thousands of developers building the next generation of cross-platform games with AeThex.

Looking for Discord Activity integration? Check out our{" "} Discord Integration Guide {" "} to build games that run inside Discord.
); }