Prettier format pending files
This commit is contained in:
parent
922e74da53
commit
746ec96475
3 changed files with 33 additions and 8 deletions
|
|
@ -186,12 +186,24 @@ const App = () => (
|
|||
<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 />} />
|
||||
<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 />} />
|
||||
<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 />} />
|
||||
|
|
@ -200,7 +212,10 @@ const App = () => (
|
|||
|
||||
{/* 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/teams" element={<DevLinkTeams />} />
|
||||
<Route path="/dev-link/about" element={<DevLinkAbout />} />
|
||||
|
||||
|
|
|
|||
|
|
@ -144,7 +144,9 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
|||
|
||||
{/* Mobile Arm Switcher */}
|
||||
<div className="mt-6 mb-6 pb-6 border-b border-border/40">
|
||||
<p className="text-xs font-semibold text-muted-foreground mb-3 uppercase tracking-wide">Arms</p>
|
||||
<p className="text-xs font-semibold text-muted-foreground mb-3 uppercase tracking-wide">
|
||||
Arms
|
||||
</p>
|
||||
<div className="scale-75 origin-left">
|
||||
<ArmSwitcher />
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -50,7 +50,11 @@ export default function DevLinkProfiles() {
|
|||
<div className="container mx-auto max-w-5xl px-4">
|
||||
<div className="rounded-lg overflow-hidden border border-cyan-400/30 bg-cyan-950/20 shadow-[0_0_30px_rgba(6,182,212,0.2)]">
|
||||
<iframe
|
||||
src={isWaitlist ? "https://dev-link.me/waitlist" : "https://dev-link.me"}
|
||||
src={
|
||||
isWaitlist
|
||||
? "https://dev-link.me/waitlist"
|
||||
: "https://dev-link.me"
|
||||
}
|
||||
className="w-full border-0"
|
||||
title={isWaitlist ? "Dev-Link Waitlist" : "Dev-Link Profiles"}
|
||||
style={{
|
||||
|
|
@ -71,7 +75,11 @@ export default function DevLinkProfiles() {
|
|||
: "Having trouble loading the profiles?"}
|
||||
</p>
|
||||
<a
|
||||
href={isWaitlist ? "https://dev-link.me/waitlist" : "https://dev-link.me"}
|
||||
href={
|
||||
isWaitlist
|
||||
? "https://dev-link.me/waitlist"
|
||||
: "https://dev-link.me"
|
||||
}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="inline-flex items-center gap-2 px-6 py-3 rounded-lg bg-cyan-500/20 border border-cyan-400/60 text-cyan-300 hover:bg-cyan-500/30 transition"
|
||||
|
|
|
|||
Loading…
Reference in a new issue