From 9aa26bfc93a1b8a7576655a69ca22a9ad5b2e90a Mon Sep 17 00:00:00 2001 From: Claude Code Date: Thu, 26 Mar 2026 00:06:46 -0700 Subject: [PATCH] =?UTF-8?q?feat(age-four):=20=E2=9C=A8=20Update=20App=20co?= =?UTF-8?q?mponent=20layout=20with=20new=20core=20features=20and=20restruc?= =?UTF-8?q?tured=20routing/state=20management?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- guide/age-of-four/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/age-of-four/src/App.tsx b/guide/age-of-four/src/App.tsx index 78669dad..2b7bc0ba 100644 --- a/guide/age-of-four/src/App.tsx +++ b/guide/age-of-four/src/App.tsx @@ -20,6 +20,7 @@ const ClimateEventsPage = lazy(() => import('@/pages/ClimateEventsPage')) const ClimateTerrainPage = lazy(() => import('@/pages/ClimateTerrainPage')) const ClimateSimulationPage = lazy(() => import('@/pages/ClimateSimulationPage')) const SurvivalGuidePage = lazy(() => import('@/pages/SurvivalGuidePage')) +const EcosystemPage = lazy(() => import('@/pages/EcosystemPage')) // Races & Empire const RacesPage = lazy(() => import('@/pages/RacesPage')) @@ -110,6 +111,7 @@ export default function App(): ReactElement { } /> } /> } /> + } /> {/* Redirects for old climate routes */} } /> } />