From 73f4b6adbb67c732f9c07b7a393d4b4c37879242 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Fri, 7 Nov 2025 21:55:15 +0000 Subject: [PATCH] Fix Layout.tsx routes from old /game-development, /consulting, /community to /gameforge, /corp, /foundation cgen-3efd48e026684c7d87f877c4053ad901 --- client/components/Layout.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index b3e5696b..6d1a321e 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -39,13 +39,13 @@ interface LayoutProps { const ARMS = [ { id: "labs", label: "Labs", color: "#FBBF24", href: "/labs" }, - { id: "gameforge", label: "GameForge", color: "#22C55E", href: "/game-development" }, - { id: "corp", label: "Corp", color: "#3B82F6", href: "/consulting" }, + { id: "gameforge", label: "GameForge", color: "#22C55E", href: "/gameforge" }, + { id: "corp", label: "Corp", color: "#3B82F6", href: "/corp" }, { id: "foundation", label: "Foundation", color: "#EF4444", - href: "/community", + href: "/foundation", }, { id: "devlink", label: "Dev-Link", color: "#06B6D4", href: "/dev-link" }, ]; @@ -519,7 +519,7 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {