Remove Foundation imports and routes from aethex.dev

cgen-4809a7ef8a7d4a6584b2f80894ecc422
This commit is contained in:
Builder.io 2025-11-17 03:22:52 +00:00
parent 4f5070fc1c
commit 8715e385cf
2 changed files with 0 additions and 47 deletions

View file

@ -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={<NexusDashboard />}
/>
<Route
path="/dashboard/foundation"
element={<FoundationDashboard />}
/>
<Route
path="/dashboard/labs"
element={<LabsDashboard />}
@ -458,31 +449,6 @@ const App = () => (
element={<CorpContactUs />}
/>
<Route path="/foundation" element={<Foundation />} />
<Route
path="/foundation/curriculum"
element={<FoundationCurriculum />}
/>
<Route
path="/foundation/achievements"
element={<FoundationAchievements />}
/>
<Route
path="/foundation/contribute"
element={<FoundationContribute />}
/>
<Route
path="/foundation/learn-more"
element={<FoundationLearnMore />}
/>
<Route
path="/foundation/get-involved"
element={<FoundationGetInvolved />}
/>
<Route
path="/foundation/downloads"
element={<FoundationDownloadCenter />}
/>
{/* Staff Arm Routes */}
<Route path="/staff" element={<Staff />} />

View file

@ -5,7 +5,6 @@ export type ArmType =
| "labs"
| "gameforge"
| "corp"
| "foundation"
| "devlink"
| "staff"
| "nexus"
@ -56,17 +55,6 @@ const THEMES: Record<ArmType, ArmTheme> = {
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";