From 28d9410a9f873359dace58a931dcea5589081bbd Mon Sep 17 00:00:00 2001 From: MrPiglr Date: Sun, 11 Jan 2026 03:52:55 +0000 Subject: [PATCH] Batch 2: Fix documentation pages content density MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Reduced heading sizes (text-3xl→text-2xl) - Simplified descriptions 50-60% - Normalized verbose technical text - Fixed: DocsGettingStarted, DocsPlatform, DocsApiReference, DocsCli, DocsExamples, DocsIntegrations, DocsCurriculum TypeScript validation: No new errors introduced --- client/pages/docs/DocsApiReference.tsx | 8 +++----- client/pages/docs/DocsCli.tsx | 9 +++------ client/pages/docs/DocsCurriculum.tsx | 6 +++--- client/pages/docs/DocsExamples.tsx | 12 +++++------- client/pages/docs/DocsGettingStarted.tsx | 12 ++++++------ client/pages/docs/DocsIntegrations.tsx | 14 +++++--------- client/pages/docs/DocsPlatform.tsx | 13 +++++-------- 7 files changed, 30 insertions(+), 44 deletions(-) diff --git a/client/pages/docs/DocsApiReference.tsx b/client/pages/docs/DocsApiReference.tsx index 8d9653e9..69d32beb 100644 --- a/client/pages/docs/DocsApiReference.tsx +++ b/client/pages/docs/DocsApiReference.tsx @@ -110,13 +110,11 @@ export default function DocsApiReference() { API Reference -

- Integrate programmatically with the AeThex API +

+ REST API reference and integration guide

- The REST API exposes every core capability of the AeThex platform. - Authenticate with OAuth 2.1 or personal access tokens, call idempotent - endpoints, and subscribe to webhooks to react to changes in real time. + Authenticate with OAuth or access tokens, call idempotent endpoints, and subscribe to webhooks for real-time updates.

diff --git a/client/pages/docs/DocsCli.tsx b/client/pages/docs/DocsCli.tsx index 7186ae08..cc111fb4 100644 --- a/client/pages/docs/DocsCli.tsx +++ b/client/pages/docs/DocsCli.tsx @@ -88,14 +88,11 @@ export default function DocsCli() { CLI Tools -

- Operate AeThex from the command line +

+ Command-line tools for development and deployment

- The AeThex CLI automates local development, environment management, - and production deployments. It is built with stability in mind, - featuring transactional deploys, shell-friendly output, and native - support for Linux, macOS, and Windows. + Automate local development, environment management, and production deployments with cross-platform support.

diff --git a/client/pages/docs/DocsCurriculum.tsx b/client/pages/docs/DocsCurriculum.tsx index aea2d958..fcaf4c5e 100644 --- a/client/pages/docs/DocsCurriculum.tsx +++ b/client/pages/docs/DocsCurriculum.tsx @@ -70,7 +70,7 @@ const curriculumModules: CurriculumModule[] = [ id: "foundations", title: "AeThex Foundations", description: - "Establish core mastery of the AeThex platform, from environment setup to shipping your first interactive experience.", + "Master platform basics from setup to deployment.", duration: "2.5 hrs", level: "foundation", focus: [ @@ -129,7 +129,7 @@ const curriculumModules: CurriculumModule[] = [ id: "builder", title: "Product Builder Track", description: - "Design and scale collaborative communities with AeThex real-time tooling, automations, and membership flows.", + "Build collaborative communities with real-time tools and automations.", duration: "3 hrs", level: "builder", focus: ["Community feed", "Workflow automations", "Admin control center"], @@ -184,7 +184,7 @@ const curriculumModules: CurriculumModule[] = [ id: "advanced", title: "Advanced Ops & Ecosystems", description: - "Engineer large-scale AeThex deployments that blend AI-guided creation, marketplace integrations, and monetization.", + "Scale deployments with AI, marketplace, and monetization features.", duration: "3.5 hrs", level: "advanced", focus: ["AI pipelines", "Marketplace", "Monetization"], diff --git a/client/pages/docs/DocsExamples.tsx b/client/pages/docs/DocsExamples.tsx index 1bc52801..a57927d6 100644 --- a/client/pages/docs/DocsExamples.tsx +++ b/client/pages/docs/DocsExamples.tsx @@ -22,7 +22,7 @@ const exampleSnippets = [ { title: "Server-side matchmaking", description: - "Quickly assemble a matchmaking service that uses AeThex queues, weighting rules, and player telemetry streams.", + "Build matchmaking with queues, weighting rules, and telemetry.", language: "TypeScript", href: "https://github.com/aethex/examples/tree/main/matchmaking-service", code: `import { createQueue, matchPlayers } from "@aethex/matchmaking"; @@ -54,7 +54,7 @@ export async function enqueuePlayer(player) { { title: "Realtime activity overlays", description: - "Broadcast live deployment and incident updates to your in-game HUD or operations dashboard using AeThex events.", + "Broadcast deployment updates to in-game HUD or dashboards.", language: "React", href: "https://github.com/aethex/examples/tree/main/realtime-overlay", code: `import { useEffect, useState } from "react"; @@ -142,13 +142,11 @@ export default function DocsExamples() { Examples & Templates -

- Production-ready patterns you can copy +

+ Code examples and starter templates

- Explore curated examples covering backend services, realtime overlays, - automation scripts, and workflow integrations. Each project includes - detailed READMEs, infrastructure diagrams, and deployment runbooks. + Production-ready examples for backend services, real-time overlays, automation, and integrations.

diff --git a/client/pages/docs/DocsGettingStarted.tsx b/client/pages/docs/DocsGettingStarted.tsx index b646186d..549f9a08 100644 --- a/client/pages/docs/DocsGettingStarted.tsx +++ b/client/pages/docs/DocsGettingStarted.tsx @@ -58,14 +58,14 @@ const prerequisites = [ { title: "AeThex Account", description: - "You will need an active AeThex account to access the dashboard, API console, and deployment tools.", + "Active account required for dashboard and API access.", actionLabel: "Create account", actionHref: "/onboarding", }, { title: "Node.js 18+ & npm", description: - "The AeThex CLI relies on modern Node runtimes. Verify your local toolchain before continuing.", + "Modern Node runtime required for CLI.", actionLabel: "Verify environment", actionHref: "https://nodejs.org/en/download", }, @@ -82,13 +82,13 @@ const setupSteps = [ { title: "Install the CLI", description: - "The CLI bootstraps local projects, provisions cloud environments, and manages deployments.", + "Bootstrap projects and manage deployments.", command: "npm install -g aethex", }, { title: "Authenticate", description: - "Log in with your AeThex credentials or paste a personal access token from the dashboard.", + "Log in with credentials or access token.", command: "aethex login", }, { @@ -196,8 +196,8 @@ export default function DocsGettingStarted() { Getting Started -

- Launch your first AeThex project in under 30 minutes +

+ Launch your first project in 30 minutes

This guide walks through the minimum setup required to ship a diff --git a/client/pages/docs/DocsIntegrations.tsx b/client/pages/docs/DocsIntegrations.tsx index c9c7329b..caaaba60 100644 --- a/client/pages/docs/DocsIntegrations.tsx +++ b/client/pages/docs/DocsIntegrations.tsx @@ -101,15 +101,11 @@ export default function DocsIntegrations() { Integrations -

- Connecting partner services to AeThex +

+ Third-party integrations and connectors

- AeThex Integrations wrap third-party analytics, identity, payments, - and live-ops tooling behind a consistent runtime, security model, and - visual system. Use this guide to register new connectors, surface - partner UI in product flows, and automate data exchange without - hand-rolled plumbing. + Connect analytics, identity, payments, and live-ops tools with unified security and data exchange.

@@ -135,7 +131,7 @@ export default function DocsIntegrations() { - Open-source MIT-licensed engine with GDScript and C# support + MIT-licensed engine with GDScript and C# support
GDScript @@ -160,7 +156,7 @@ export default function DocsIntegrations() { - Powerful 2D engine with GML scripting for rapid game development + 2D engine with GML scripting for rapid development
GML diff --git a/client/pages/docs/DocsPlatform.tsx b/client/pages/docs/DocsPlatform.tsx index b53be9f8..3a2bb69d 100644 --- a/client/pages/docs/DocsPlatform.tsx +++ b/client/pages/docs/DocsPlatform.tsx @@ -28,7 +28,7 @@ const platformPillars = [ { title: "Unified dashboard", description: - "Monitor deployments, live metrics, and release health from a single control surface. Jump into incidents, approvals, and audit trails without leaving the workspace.", + "Monitor deployments, metrics, and incidents from a unified dashboard.", icon: LayoutDashboard, href: "/dashboard", cta: "Visit dashboard", @@ -36,7 +36,7 @@ const platformPillars = [ { title: "AeThex Passport", description: - "Give builders portable identity with verified skills, achievements, and cross-product progress synced to their Passport profile.", + "Portable identity with verified skills and achievements.", icon: IdCard, href: "/passport/me", cta: "Open passport", @@ -169,14 +169,11 @@ export default function DocsPlatform() { Platform Experience -

- Deliver cohesive player and builder journeys on AeThex +

+ Platform overview and core features

- Beyond deployment pipelines and CLI tooling, AeThex bundles - collaboration, identity, and live-ops systems so teams can craft - unforgettable experiences. Use this guide to orient new stakeholders - and plan end-to-end platform rollouts. + AeThex combines deployment pipelines, collaboration tools, identity systems, and live-ops features for building complete experiences.