completionId: cgen-ad7f81dd8745412ebea9e1f655e72876
cgen-ad7f81dd8745412ebea9e1f655e72876
This commit is contained in:
parent
2394c5e83d
commit
92a107c3d7
1 changed files with 30 additions and 28 deletions
|
|
@ -171,44 +171,46 @@ const App = () => (
|
|||
<Route path="/reset-password" element={<ResetPassword />} />
|
||||
|
||||
{/* Service routes */}
|
||||
<Route path="/game-development" element={<GameDevelopment />} />
|
||||
<Route path="/consulting" element={<DevelopmentConsulting />} />
|
||||
<Route path="/game-development" element={<GameForge />} />
|
||||
<Route path="/consulting" element={<Corp />} />
|
||||
<Route path="/mentorship" element={<MentorshipPrograms />} />
|
||||
<Route path="/engage" element={<Engage />} />
|
||||
<Route
|
||||
path="/pricing"
|
||||
element={<Navigate to="/engage" replace />}
|
||||
/>
|
||||
<Route path="/research" element={<ResearchLabs />} />
|
||||
<Route path="/labs" element={<ResearchLabs />} />
|
||||
<Route path="/research" element={<Labs />} />
|
||||
<Route path="/labs" element={<Labs />} />
|
||||
|
||||
{/* Labs Sub-routes */}
|
||||
<Route path="/labs/teams" element={<LabsTeams />} />
|
||||
<Route path="/labs/about" element={<LabsAbout />} />
|
||||
<Route path="/labs/pricing" element={<LabsPricing />} />
|
||||
<Route path="/labs/case-studies" element={<LabsCaseStudies />} />
|
||||
|
||||
{/* GameForge Sub-routes */}
|
||||
<Route path="/game-development/teams" element={<GameForgeTeams />} />
|
||||
<Route path="/game-development/about" element={<GameForgeAbout />} />
|
||||
<Route path="/game-development/pricing" element={<GameForgePricing />} />
|
||||
|
||||
{/* Corp Sub-routes */}
|
||||
<Route path="/consulting/teams" element={<CorpTeams />} />
|
||||
<Route path="/consulting/about" element={<CorpAbout />} />
|
||||
<Route path="/consulting/pricing" element={<CorpPricing />} />
|
||||
|
||||
{/* Foundation routes */}
|
||||
<Route path="/foundation" element={<Foundation />} />
|
||||
<Route path="/foundation/teams" element={<FoundationTeams />} />
|
||||
<Route path="/foundation/about" element={<FoundationAbout />} />
|
||||
|
||||
{/* Dev-Link routes */}
|
||||
<Route path="/dev-link" element={<DevLink />} />
|
||||
<Route
|
||||
path="/dev-link/waitlist"
|
||||
element={<DevLinkProfiles />}
|
||||
/>
|
||||
<Route path="/dev-link/waitlist" element={<DevLinkProfiles />} />
|
||||
<Route path="/dev-link/profiles" element={<DevLinkProfiles />} />
|
||||
<Route path="/dev-link/profiles/:profileId" element={<DevLinkProfile />} />
|
||||
<Route path="/dev-link/teams" element={<DevLinkTeams />} />
|
||||
<Route path="/dev-link/about" element={<DevLinkAbout />} />
|
||||
|
||||
{/* Labs Sub-routes (prefixed to avoid conflicts) */}
|
||||
<Route path="/labs-teams" element={<LabsTeams />} />
|
||||
<Route path="/labs-about" element={<LabsAbout />} />
|
||||
<Route path="/labs-pricing" element={<LabsPricing />} />
|
||||
<Route path="/labs-case-studies" element={<LabsCaseStudies />} />
|
||||
|
||||
{/* GameForge Sub-routes (prefixed) */}
|
||||
<Route path="/gameforge-teams" element={<GameForgeTeams />} />
|
||||
<Route path="/gameforge-about" element={<GameForgeAbout />} />
|
||||
<Route path="/gameforge-pricing" element={<GameForgePricing />} />
|
||||
|
||||
{/* Corp Sub-routes (prefixed) */}
|
||||
<Route path="/corp-teams" element={<CorpTeams />} />
|
||||
<Route path="/corp-about" element={<CorpAbout />} />
|
||||
<Route path="/corp-pricing" element={<CorpPricing />} />
|
||||
|
||||
{/* Foundation Sub-routes (prefixed) */}
|
||||
<Route path="/foundation-teams" element={<FoundationTeams />} />
|
||||
<Route path="/foundation-about" element={<FoundationAbout />} />
|
||||
|
||||
{/* Resource routes */}
|
||||
<Route path="/docs" element={<DocsLayout />}>
|
||||
<Route index element={<DocsOverview />} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue