diff --git a/client/components/ArmSwitcher.tsx b/client/components/ArmSwitcher.tsx index 945b4655..4bac7d6f 100644 --- a/client/components/ArmSwitcher.tsx +++ b/client/components/ArmSwitcher.tsx @@ -31,15 +31,6 @@ const ARMS: Arm[] = [ textColor: "text-yellow-400", href: "/labs", }, - { - id: "devlink", - name: "AeThex | Dev-Link", - label: "Dev-Link", - color: "#06B6D4", - bgColor: "bg-cyan-500/20", - textColor: "text-cyan-400", - href: "/dev-link", - }, { id: "foundation", name: "AeThex | Foundation", @@ -88,8 +79,6 @@ const LOGO_URLS: Record = { corp: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3772073d5b4b49e688ed02480f4cae43?format=webp&width=800", foundation: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc02cb1bf5056479bbb3ea4bd91f0d472?format=webp&width=800", - devlink: - "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=webp&width=800", nexus: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F6df123b87a144b1fb99894d94198d97b?format=webp&width=800", }; diff --git a/client/components/IsometricRealmSelector.tsx b/client/components/IsometricRealmSelector.tsx index 1185ddef..31867d1b 100644 --- a/client/components/IsometricRealmSelector.tsx +++ b/client/components/IsometricRealmSelector.tsx @@ -120,15 +120,6 @@ const realms: RealmData[] = [ description: "Internal operations and team management for AeThex staff members.", features: ["Team coordination", "Admin tools", "Operations hub"], }, - { - id: "devlink", - label: "DEV-LINK", - color: "hsl(180, 100%, 60%)", - route: "/devlink", - icon: "🔗", - description: "Developer networking and collaboration. Connect with fellow builders.", - features: ["Developer profiles", "Skill matching", "Collaboration tools"], - }, ]; // Animated counter component diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index 9385792d..8c1087e0 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -53,7 +53,6 @@ const ARMS = [ href: "https://aethex.foundation", external: true, }, - { id: "devlink", label: "Dev-Link", color: "#06B6D4", href: "/dev-link" }, { id: "nexus", label: "Nexus", color: "#A855F7", href: "/nexus" }, ]; @@ -66,8 +65,6 @@ const ARM_LOGOS: Record = { corp: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F3772073d5b4b49e688ed02480f4cae43?format=webp&width=800", foundation: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc02cb1bf5056479bbb3ea4bd91f0d472?format=webp&width=800", - devlink: - "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=webp&width=800", nexus: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F6df123b87a144b1fb99894d94198d97b?format=webp&width=800", }; diff --git a/client/components/ProfileEditor.tsx b/client/components/ProfileEditor.tsx index 0f57653c..2878f304 100644 --- a/client/components/ProfileEditor.tsx +++ b/client/components/ProfileEditor.tsx @@ -55,7 +55,6 @@ const ARMS = [ { id: "gameforge", label: "GameForge", color: "bg-green-500" }, { id: "labs", label: "Labs", color: "bg-yellow-500" }, { id: "corp", label: "Corp", color: "bg-blue-500" }, - { id: "devlink", label: "Dev-Link", color: "bg-cyan-500" }, ]; export function ProfileEditor({ diff --git a/client/components/admin/AdminDiscordManagement.tsx b/client/components/admin/AdminDiscordManagement.tsx index 0cabe23a..1fb5d7d0 100644 --- a/client/components/admin/AdminDiscordManagement.tsx +++ b/client/components/admin/AdminDiscordManagement.tsx @@ -41,7 +41,6 @@ const ARMS = [ { value: "gameforge", label: "GameForge", color: "bg-green-500/20" }, { value: "corp", label: "Corp", color: "bg-blue-500/20" }, { value: "foundation", label: "Foundation", color: "bg-red-500/20" }, - { value: "devlink", label: "Dev-Link", color: "bg-cyan-500/20" }, ]; export function AdminDiscordManagement() { diff --git a/client/components/feed/ArmFeed.tsx b/client/components/feed/ArmFeed.tsx index e4237528..fd3277fd 100644 --- a/client/components/feed/ArmFeed.tsx +++ b/client/components/feed/ArmFeed.tsx @@ -77,13 +77,6 @@ const ARMS: { color: "text-red-400", description: "Education and mentorship", }, - { - id: "devlink", - label: "Dev-Link", - icon: Network, - color: "text-cyan-400", - description: "Developer networking", - }, { id: "nexus", label: "Nexus", diff --git a/client/components/feed/PostComposer.tsx b/client/components/feed/PostComposer.tsx index 11faa3d3..4709acc1 100644 --- a/client/components/feed/PostComposer.tsx +++ b/client/components/feed/PostComposer.tsx @@ -30,7 +30,6 @@ const ARM_OPTIONS: { id: ArmType; label: string }[] = [ { id: "gameforge", label: "GameForge" }, { id: "corp", label: "Corp" }, { id: "foundation", label: "Foundation" }, - { id: "devlink", label: "Dev-Link" }, { id: "nexus", label: "Nexus" }, { id: "staff", label: "Staff" }, ]; diff --git a/client/components/onboarding/FollowArms.tsx b/client/components/onboarding/FollowArms.tsx index 0d464528..afaeca8f 100644 --- a/client/components/onboarding/FollowArms.tsx +++ b/client/components/onboarding/FollowArms.tsx @@ -57,15 +57,6 @@ const ARMS = [ borderColor: "border-red-500/30", description: "Education, mentorship, and community building", }, - { - id: "devlink", - name: "Dev-Link", - icon: Network, - color: "text-cyan-400", - bgColor: "bg-cyan-500/10", - borderColor: "border-cyan-500/30", - description: "Professional networking and opportunities", - }, { id: "nexus", name: "NEXUS", diff --git a/client/components/onboarding/RealmSelection.tsx b/client/components/onboarding/RealmSelection.tsx index 2ba8bcb8..8b35ecd8 100644 --- a/client/components/onboarding/RealmSelection.tsx +++ b/client/components/onboarding/RealmSelection.tsx @@ -44,13 +44,6 @@ const REALMS = [ color: "from-red-500/20 to-red-600/20", borderColor: "border-red-400", }, - { - id: "devlink", - title: "💻 Dev-Link", - description: "Professional Networking - Career development platform", - color: "from-cyan-500/20 to-cyan-600/20", - borderColor: "border-cyan-400", - }, ]; export default function RealmSelection({ diff --git a/client/components/settings/RealmSwitcher.tsx b/client/components/settings/RealmSwitcher.tsx index cd837ca1..f636aefd 100644 --- a/client/components/settings/RealmSwitcher.tsx +++ b/client/components/settings/RealmSwitcher.tsx @@ -36,7 +36,6 @@ export type RealmKey = | "gameforge" | "corp" | "foundation" - | "devlink" | "nexus" | "staff"; @@ -118,22 +117,6 @@ export const REALM_OPTIONS: RealmOption[] = [ "Achievement-based progression", ], }, - { - id: "devlink", - name: "Developer Network", - title: "Dev-Link", - description: - "Connect with developers, share knowledge, and collaborate on open-source projects across the AeThex ecosystem.", - icon: Database, - gradient: "from-cyan-400 to-cyan-600", - route: "/dashboard/dev-link", - routeLabel: "Dev-Link", - highlights: [ - "Developer networking", - "Open-source collaboration", - "API access and integrations", - ], - }, { id: "nexus", name: "Talent Marketplace", diff --git a/client/contexts/ArmThemeContext.tsx b/client/contexts/ArmThemeContext.tsx index dd0956e2..455ebbc1 100644 --- a/client/contexts/ArmThemeContext.tsx +++ b/client/contexts/ArmThemeContext.tsx @@ -121,7 +121,7 @@ const detectArmFromPath = (pathname: string): ArmType => { 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("/dev-link")) return "nexus"; // Dev-Link merged into Nexus if (pathname.includes("/staff")) return "staff"; if (pathname.includes("/nexus")) return "nexus"; return "default"; diff --git a/client/pages/About.tsx b/client/pages/About.tsx index 06875522..3f081866 100644 --- a/client/pages/About.tsx +++ b/client/pages/About.tsx @@ -65,23 +65,6 @@ export default function About() { function: "Goodwill moat, specialized talent pipeline, and ecosystem growth", }, - { - id: "devlink", - name: "Dev-Link", - color: "from-cyan-500 to-blue-500", - icon: Network, - tagline: "Talent Network", - description: - "B2B SaaS platform for specialized professional networking and recruitment", - focus: [ - "Recruitment Platform", - "Talent Matching", - "Professional Network", - "Career Development", - ], - function: - "Access-based moat and lock-in effect for specialized human capital", - }, ]; const moats = [ diff --git a/client/pages/Activity.tsx b/client/pages/Activity.tsx index ced0695e..ef2cbf2f 100644 --- a/client/pages/Activity.tsx +++ b/client/pages/Activity.tsx @@ -33,7 +33,6 @@ const ARM_CONFIG: Record = { gameforge: "gameforge", corp: "corp", foundation: "foundation", - devlink: "devlink", nexus: "nexus", staff: "staff", }; @@ -29,9 +28,6 @@ export function FoundationFeed() { return ; } -export function DevLinkFeed() { - return ; -} export function NexusFeed() { return ; diff --git a/client/pages/Arms.tsx b/client/pages/Arms.tsx index 72b7bfcf..80fc4b40 100644 --- a/client/pages/Arms.tsx +++ b/client/pages/Arms.tsx @@ -78,18 +78,6 @@ const ARMS: Arm[] = [ glowColor: "rgba(239, 68, 68, 0.3)", external: true, }, - { - id: "devlink", - label: "Dev-Link", - color: "#06B6D4", - bgGradient: "from-cyan-600 to-cyan-400", - textColor: "text-cyan-400", - href: "/dev-link", - icon: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=webp&width=800", - tip: "Professional network for creators", - shadowColor: "shadow-cyan-500/50", - glowColor: "rgba(6, 182, 212, 0.3)", - }, { id: "nexus", label: "Nexus", diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index 89e13c36..b950a0e2 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -110,16 +110,6 @@ const ARMS = [ borderColor: "border-red-500/30 hover:border-red-500/60", external: true, }, - { - id: "devlink", - label: "Dev-Link", - color: "#06B6D4", - href: "/dashboard/dev-link", - icon: Database, - description: "Developer Network", - bgGradient: "from-cyan-500/20 to-cyan-900/20", - borderColor: "border-cyan-500/30 hover:border-cyan-500/60", - }, { id: "nexus", label: "Nexus", diff --git a/client/pages/Explore.tsx b/client/pages/Explore.tsx index 84325ef7..1e0eda0b 100644 --- a/client/pages/Explore.tsx +++ b/client/pages/Explore.tsx @@ -69,14 +69,6 @@ const ARMS = [ description: "Education, mentorship & learning", focus: "Education, Mentorship, Guidance", }, - { - id: "devlink", - label: "Dev-Link", - icon: Network, - color: "from-cyan-500 to-blue-600", - description: "Developer community & connections", - focus: "Community, Networking, Resources", - }, { id: "nexus", label: "Nexus", diff --git a/client/pages/Feed.tsx b/client/pages/Feed.tsx index 591bc934..f49be129 100644 --- a/client/pages/Feed.tsx +++ b/client/pages/Feed.tsx @@ -61,7 +61,6 @@ const ARMS: { id: ArmType; label: string; icon: any; color: string }[] = [ icon: BookOpen, color: "text-red-400", }, - { id: "devlink", label: "Dev-Link", icon: Network, color: "text-cyan-400" }, { id: "nexus", label: "Nexus", icon: Sparkles, color: "text-purple-400" }, { id: "staff", label: "Staff", icon: Shield, color: "text-indigo-400" }, ]; diff --git a/client/pages/GetStarted.tsx b/client/pages/GetStarted.tsx index a0e68275..ac3824b8 100644 --- a/client/pages/GetStarted.tsx +++ b/client/pages/GetStarted.tsx @@ -218,14 +218,6 @@ export default function GetStarted() { color: "from-purple-500 to-violet-600", features: ["Admin", "Ops", "Tools"], }, - { - id: "devlink", - label: "DEV-LINK", - description: "Developer networking and collaboration for fellow builders.", - icon: Link2, - color: "from-teal-500 to-cyan-600", - features: ["Profiles", "Matching", "Collab"], - }, ]; const testimonials = [ @@ -266,7 +258,7 @@ export default function GetStarted() { }, { question: "What are Realms and how do they work?", - answer: "Realms are specialized areas of the platform, each designed for different aspects of building and collaboration. You can explore all 7 realms freely, but you'll set a primary realm during onboarding that personalizes your dashboard and recommendations.", + answer: "Realms are specialized areas of the platform, each designed for different aspects of building and collaboration. You can explore all 6 realms freely, but you'll set a primary realm during onboarding that personalizes your dashboard and recommendations.", }, { question: "How does the XP system work?", @@ -274,7 +266,7 @@ export default function GetStarted() { }, { question: "Can I use AeThex for my team or studio?", - answer: "Absolutely! The Corp realm offers enterprise solutions with dedicated support, custom integrations, and SLA guarantees. Teams can also collaborate freely in GameForge for game development or Dev-Link for general projects.", + answer: "Absolutely! The Corp realm offers enterprise solutions with dedicated support, custom integrations, and SLA guarantees. Teams can also collaborate freely in GameForge for game development or Nexus for general projects.", }, { question: "What are AI Intelligent Agents?", @@ -379,7 +371,7 @@ export default function GetStarted() {
- +
Realms
diff --git a/client/pages/creators/CreatorDirectory.tsx b/client/pages/creators/CreatorDirectory.tsx index d21f6ffd..006e3f68 100644 --- a/client/pages/creators/CreatorDirectory.tsx +++ b/client/pages/creators/CreatorDirectory.tsx @@ -33,7 +33,6 @@ const ARMS = [ { value: "gameforge", label: "GameForge - Game Development" }, { value: "corp", label: "Corp - Business & Consulting" }, { value: "foundation", label: "Foundation - Education" }, - { value: "devlink", label: "Dev-Link - Developer Network" }, { value: "nexus", label: "Nexus - Talent Marketplace" }, ];