Redirect Labs routes to aethex.studio and update documentation

Update client-side routing in App.tsx to redirect `/labs/*` and `/dashboard/labs` to `https://aethex.studio` and `https://aethex.studio/dashboard` respectively, and modify replit.md to reflect these changes.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9203795e-937a-4306-b81d-b4d5c78c240e
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 9f5ee0ec-1d84-40ab-8a79-c00a685ef78f
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7c94b7a0-29c7-4f2e-94ef-44b2153872b7/9203795e-937a-4306-b81d-b4d5c78c240e/uM0p4Kd
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
sirpiglr 2025-12-06 04:37:06 +00:00
parent 6e56786c96
commit d2665b2b6b
2 changed files with 7 additions and 16 deletions

View file

@ -192,9 +192,10 @@ const App = () => (
path="/dashboard/nexus"
element={<NexusDashboard />}
/>
{/* Labs Dashboard redirects to aethex.studio */}
<Route
path="/dashboard/labs"
element={<LabsDashboard />}
element={<ExternalRedirect to="https://aethex.studio/dashboard" />}
/>
{/* GameForge Dashboard redirects to Foundation (Non-Profit Program) */}
<Route
@ -342,20 +343,9 @@ const App = () => (
/>
<Route path="/research" element={<ResearchLabs />} />
{/* New Arm Landing Pages */}
<Route path="/labs" element={<Labs />} />
<Route
path="/labs/explore-research"
element={<LabsExploreResearch />}
/>
<Route
path="/labs/join-team"
element={<LabsJoinTeam />}
/>
<Route
path="/labs/get-involved"
element={<LabsGetInvolved />}
/>
{/* Labs redirects to aethex.studio (Skunkworks R&D) */}
<Route path="/labs" element={<ExternalRedirect to="https://aethex.studio" />} />
<Route path="/labs/*" element={<ExternalRedirect to="https://aethex.studio" />} />
{/* GameForge redirects to aethex.foundation/gameforge (Non-Profit Program - Axiom Model) */}
<Route path="/gameforge" element={<ExternalRedirect to="https://aethex.foundation/gameforge" />} />

View file

@ -30,7 +30,8 @@ The monolith (`aethex.dev`) implements split routing to enforce legal separation
| `/foundation/*` | `https://aethex.foundation` | Non-Profit (Guardian) | **Redirect** |
| `/gameforge/*` | `https://aethex.foundation/gameforge` | Non-Profit (Program) | **Redirect** |
| `/dashboard/gameforge` | `https://aethex.foundation/gameforge/dashboard` | Non-Profit | **Redirect** |
| `/labs/*` | stays on `aethex.dev` | For-Profit (Skunkworks) | Local |
| `/labs/*` | `https://aethex.studio` | For-Profit (Skunkworks) | **Redirect** |
| `/dashboard/labs` | `https://aethex.studio/dashboard` | For-Profit (Skunkworks) | **Redirect** |
| `/nexus/*` | stays on `aethex.dev` | For-Profit (Monetization) | Local |
| `/corp/*` | stays on `aethex.dev` | For-Profit (Services) | Local |