diff --git a/client/App.tsx b/client/App.tsx
index 901ee7f3..8e78a3e4 100644
--- a/client/App.tsx
+++ b/client/App.tsx
@@ -22,7 +22,6 @@ import ResearchLabs from "./pages/ResearchLabs";
import Labs from "./pages/Labs";
import GameForge from "./pages/GameForge";
import Corp from "./pages/Corp";
-import Foundation from "./pages/Foundation";
import Staff from "./pages/Staff";
import DevLink from "./pages/DevLink";
import DevLinkProfiles from "./pages/DevLinkProfiles";
@@ -99,7 +98,6 @@ import MentorProfile from "./pages/community/MentorProfile";
import Realms from "./pages/Realms";
import Investors from "./pages/Investors";
import NexusDashboard from "./pages/dashboards/NexusDashboard";
-import FoundationDashboard from "./pages/dashboards/FoundationDashboard";
import LabsDashboard from "./pages/dashboards/LabsDashboard";
import GameForgeDashboard from "./pages/dashboards/GameForgeDashboard";
import DevLinkDashboard from "./pages/dashboards/DevLinkDashboard";
@@ -136,9 +134,6 @@ import ClientInvoices from "./pages/hub/ClientInvoices";
import ClientContracts from "./pages/hub/ClientContracts";
import ClientReports from "./pages/hub/ClientReports";
import ClientSettings from "./pages/hub/ClientSettings";
-import FoundationCurriculum from "./pages/foundation/FoundationCurriculum";
-import FoundationAchievements from "./pages/foundation/FoundationAchievements";
-import FoundationDownloadCenter from "./pages/FoundationDownloadCenter";
import Space1Welcome from "./pages/internal-docs/Space1Welcome";
import Space1AxiomModel from "./pages/internal-docs/Space1AxiomModel";
import Space1FindYourRole from "./pages/internal-docs/Space1FindYourRole";
@@ -196,10 +191,6 @@ const App = () => (
path="/dashboard/nexus"
element={}
/>
- }
- />
}
@@ -458,31 +449,6 @@ const App = () => (
element={}
/>
- } />
- }
- />
- }
- />
- }
- />
- }
- />
- }
- />
- }
- />
{/* Staff Arm Routes */}
} />
diff --git a/client/contexts/ArmThemeContext.tsx b/client/contexts/ArmThemeContext.tsx
index bded6dfb..e430283c 100644
--- a/client/contexts/ArmThemeContext.tsx
+++ b/client/contexts/ArmThemeContext.tsx
@@ -5,7 +5,6 @@ export type ArmType =
| "labs"
| "gameforge"
| "corp"
- | "foundation"
| "devlink"
| "staff"
| "nexus"
@@ -56,17 +55,6 @@ const THEMES: Record = {
fontFamily: '"Inter", "-apple-system", "BlinkMacSystemFont", "Segoe UI", sans-serif',
displayName: "Corp",
},
- foundation: {
- arm: "foundation",
- accentColor: "from-red-500 to-red-400",
- accentHex: "#ef4444",
- wallpaperClass: "wallpaper-foundation",
- wallpaperPattern:
- "repeating-linear-gradient(0deg, rgba(239, 68, 68, 0.04) 0px, rgba(239, 68, 68, 0.04) 1px, transparent 1px, transparent 2px)",
- fontClass: "font-foundation",
- fontFamily: '"Merriweather", "Georgia", serif',
- displayName: "Foundation",
- },
devlink: {
arm: "devlink",
accentColor: "from-cyan-500 to-cyan-400",
@@ -116,7 +104,6 @@ const detectArmFromPath = (pathname: string): ArmType => {
if (pathname.includes("/labs")) return "labs";
if (pathname.includes("/gameforge")) return "gameforge";
if (pathname.includes("/corp")) return "corp";
- if (pathname.includes("/foundation")) return "foundation";
if (pathname.includes("/dev-link")) return "devlink";
if (pathname.includes("/staff")) return "staff";
if (pathname.includes("/nexus")) return "nexus";