Revert ArmSwitcher routes to original /gameforge, /corp, /foundation
cgen-21745979eb4043d9917e187ab70381d1
This commit is contained in:
parent
d78eae9004
commit
43cf6d148c
2 changed files with 12 additions and 12 deletions
|
|
@ -195,32 +195,32 @@ const App = () => (
|
||||||
element={<LabsGetInvolved />}
|
element={<LabsGetInvolved />}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Route path="/game-development" element={<GameForge />} />
|
<Route path="/gameforge" element={<GameForge />} />
|
||||||
<Route
|
<Route
|
||||||
path="/game-development/start-building"
|
path="/gameforge/start-building"
|
||||||
element={<GameForgeStartBuilding />}
|
element={<GameForgeStartBuilding />}
|
||||||
/>
|
/>
|
||||||
<Route
|
<Route
|
||||||
path="/game-development/view-portfolio"
|
path="/gameforge/view-portfolio"
|
||||||
element={<GameForgeViewPortfolio />}
|
element={<GameForgeViewPortfolio />}
|
||||||
/>
|
/>
|
||||||
<Route
|
<Route
|
||||||
path="/game-development/join-gameforge"
|
path="/gameforge/join-gameforge"
|
||||||
element={<GameForgeJoinGameForge />}
|
element={<GameForgeJoinGameForge />}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Route path="/consulting" element={<Corp />} />
|
<Route path="/corp" element={<Corp />} />
|
||||||
<Route
|
<Route
|
||||||
path="/consulting/schedule-consultation"
|
path="/corp/schedule-consultation"
|
||||||
element={<CorpScheduleConsultation />}
|
element={<CorpScheduleConsultation />}
|
||||||
/>
|
/>
|
||||||
<Route
|
<Route
|
||||||
path="/consulting/view-case-studies"
|
path="/corp/view-case-studies"
|
||||||
element={<CorpViewCaseStudies />}
|
element={<CorpViewCaseStudies />}
|
||||||
/>
|
/>
|
||||||
<Route path="/consulting/contact-us" element={<CorpContactUs />} />
|
<Route path="/corp/contact-us" element={<CorpContactUs />} />
|
||||||
|
|
||||||
<Route path="/community" element={<Foundation />} />
|
<Route path="/foundation" element={<Foundation />} />
|
||||||
<Route
|
<Route
|
||||||
path="/community/contribute"
|
path="/community/contribute"
|
||||||
element={<FoundationContribute />}
|
element={<FoundationContribute />}
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ const ARMS: Arm[] = [
|
||||||
color: "#22C55E",
|
color: "#22C55E",
|
||||||
bgColor: "bg-green-500/20",
|
bgColor: "bg-green-500/20",
|
||||||
textColor: "text-green-400",
|
textColor: "text-green-400",
|
||||||
href: "/game-development",
|
href: "/gameforge",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "corp",
|
id: "corp",
|
||||||
|
|
@ -38,7 +38,7 @@ const ARMS: Arm[] = [
|
||||||
color: "#3B82F6",
|
color: "#3B82F6",
|
||||||
bgColor: "bg-blue-500/20",
|
bgColor: "bg-blue-500/20",
|
||||||
textColor: "text-blue-400",
|
textColor: "text-blue-400",
|
||||||
href: "/consulting",
|
href: "/corp",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "foundation",
|
id: "foundation",
|
||||||
|
|
@ -47,7 +47,7 @@ const ARMS: Arm[] = [
|
||||||
color: "#EF4444",
|
color: "#EF4444",
|
||||||
bgColor: "bg-red-500/20",
|
bgColor: "bg-red-500/20",
|
||||||
textColor: "text-red-400",
|
textColor: "text-red-400",
|
||||||
href: "/community",
|
href: "/foundation",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "devlink",
|
id: "devlink",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue