Prettier format pending files

This commit is contained in:
Builder.io 2025-11-07 19:38:27 +00:00
parent 54ac2989d8
commit 44b6039744
9 changed files with 87 additions and 51 deletions

View file

@ -185,24 +185,54 @@ const App = () => (
{/* New Arm Landing Pages */} {/* New Arm Landing Pages */}
<Route path="/labs" element={<Labs />} /> <Route path="/labs" element={<Labs />} />
<Route path="/labs/explore-research" element={<LabsExploreResearch />} /> <Route
path="/labs/explore-research"
element={<LabsExploreResearch />}
/>
<Route path="/labs/join-team" element={<LabsJoinTeam />} /> <Route path="/labs/join-team" element={<LabsJoinTeam />} />
<Route path="/labs/get-involved" element={<LabsGetInvolved />} /> <Route
path="/labs/get-involved"
element={<LabsGetInvolved />}
/>
<Route path="/gameforge" element={<GameForge />} /> <Route path="/gameforge" element={<GameForge />} />
<Route path="/gameforge/start-building" element={<GameForgeStartBuilding />} /> <Route
<Route path="/gameforge/view-portfolio" element={<GameForgeViewPortfolio />} /> path="/gameforge/start-building"
<Route path="/gameforge/join-gameforge" element={<GameForgeJoinGameForge />} /> element={<GameForgeStartBuilding />}
/>
<Route
path="/gameforge/view-portfolio"
element={<GameForgeViewPortfolio />}
/>
<Route
path="/gameforge/join-gameforge"
element={<GameForgeJoinGameForge />}
/>
<Route path="/corp" element={<Corp />} /> <Route path="/corp" element={<Corp />} />
<Route path="/corp/schedule-consultation" element={<CorpScheduleConsultation />} /> <Route
<Route path="/corp/view-case-studies" element={<CorpViewCaseStudies />} /> path="/corp/schedule-consultation"
element={<CorpScheduleConsultation />}
/>
<Route
path="/corp/view-case-studies"
element={<CorpViewCaseStudies />}
/>
<Route path="/corp/contact-us" element={<CorpContactUs />} /> <Route path="/corp/contact-us" element={<CorpContactUs />} />
<Route path="/foundation" element={<Foundation />} /> <Route path="/foundation" element={<Foundation />} />
<Route path="/foundation/contribute" element={<FoundationContribute />} /> <Route
<Route path="/foundation/learn-more" element={<FoundationLearnMore />} /> path="/foundation/contribute"
<Route path="/foundation/get-involved" element={<FoundationGetInvolved />} /> element={<FoundationContribute />}
/>
<Route
path="/foundation/learn-more"
element={<FoundationLearnMore />}
/>
<Route
path="/foundation/get-involved"
element={<FoundationGetInvolved />}
/>
{/* Dev-Link routes */} {/* Dev-Link routes */}
<Route path="/dev-link" element={<DevLink />} /> <Route path="/dev-link" element={<DevLink />} />

View file

@ -165,9 +165,7 @@ export default function ArmSwitcher() {
<span className="text-sm font-semibold text-white"> <span className="text-sm font-semibold text-white">
{arm.label} {arm.label}
</span> </span>
<span className="text-xs text-gray-400"> <span className="text-xs text-gray-400">{arm.name}</span>
{arm.name}
</span>
</div> </div>
</button> </button>
))} ))}

View file

@ -42,16 +42,24 @@ const ARMS = [
{ id: "labs", label: "Labs", color: "#FBBF24", href: "/labs" }, { id: "labs", label: "Labs", color: "#FBBF24", href: "/labs" },
{ id: "gameforge", label: "GameForge", color: "#22C55E", href: "/gameforge" }, { id: "gameforge", label: "GameForge", color: "#22C55E", href: "/gameforge" },
{ id: "corp", label: "Corp", color: "#3B82F6", href: "/corp" }, { id: "corp", label: "Corp", color: "#3B82F6", href: "/corp" },
{ id: "foundation", label: "Foundation", color: "#EF4444", href: "/foundation" }, {
id: "foundation",
label: "Foundation",
color: "#EF4444",
href: "/foundation",
},
{ id: "devlink", label: "Dev-Link", color: "#06B6D4", href: "/dev-link" }, { id: "devlink", label: "Dev-Link", color: "#06B6D4", href: "/dev-link" },
]; ];
const ARM_LOGOS: Record<string, string> = { const ARM_LOGOS: Record<string, string> = {
labs: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F85fe7910cff6483db1ea99c154684844?format=webp&width=800", labs: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F85fe7910cff6483db1ea99c154684844?format=webp&width=800",
gameforge: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fcd3534c1caa0497abfd44224040c6059?format=webp&width=800", gameforge:
"https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fcd3534c1caa0497abfd44224040c6059?format=webp&width=800",
corp: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fae654ecc18b241bdab273893e8231970?format=webp&width=800", corp: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fae654ecc18b241bdab273893e8231970?format=webp&width=800",
foundation: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc02cb1bf5056479bbb3ea4bd91f0d472?format=webp&width=800", foundation:
devlink: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=webp&width=800", "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",
}; };
export default function CodeLayout({ children, hideFooter }: LayoutProps) { export default function CodeLayout({ children, hideFooter }: LayoutProps) {
@ -121,7 +129,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
{/* Logo - Desktop: Link, Mobile: Expandable Arms */} {/* Logo - Desktop: Link, Mobile: Expandable Arms */}
<div className="flex items-center shrink-0 relative"> <div className="flex items-center shrink-0 relative">
{/* Desktop Logo */} {/* Desktop Logo */}
<Link to="/" className="hover-glow group inline-block hidden sm:block"> <Link
to="/"
className="hover-glow group inline-block hidden sm:block"
>
<img <img
src="https://docs.aethex.tech/~gitbook/image?url=https%3A%2F%2F1143808467-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Forganizations%252FDhUg3jal6kdpG645FzIl%252Fsites%252Fsite_HeOmR%252Flogo%252FqxDYz8Oj2SnwUTa8t3UB%252FAeThex%2520Origin%2520logo.png%3Falt%3Dmedia%26token%3D200e8ea2-0129-4cbe-b516-4a53f60c512b&width=256&dpr=1&quality=100&sign=6c7576ce&sv=2" src="https://docs.aethex.tech/~gitbook/image?url=https%3A%2F%2F1143808467-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Forganizations%252FDhUg3jal6kdpG645FzIl%252Fsites%252Fsite_HeOmR%252Flogo%252FqxDYz8Oj2SnwUTa8t3UB%252FAeThex%2520Origin%2520logo.png%3Falt%3Dmedia%26token%3D200e8ea2-0129-4cbe-b516-4a53f60c512b&width=256&dpr=1&quality=100&sign=6c7576ce&sv=2"
alt="AeThex Logo" alt="AeThex Logo"
@ -144,7 +155,9 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
mobileArmsOpen ? "border-purple-400/50 animate-spin" : "" mobileArmsOpen ? "border-purple-400/50 animate-spin" : ""
}`} }`}
style={{ style={{
animation: mobileArmsOpen ? "spin 3s linear infinite" : "none", animation: mobileArmsOpen
? "spin 3s linear infinite"
: "none",
}} }}
/> />
<img <img

View file

@ -84,8 +84,8 @@ export default function CorpViewCaseStudies() {
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-blue-200/70"> <p className="text-sm text-blue-200/70">
Enterprise client achieved significant revenue growth through Enterprise client achieved significant revenue growth
digital transformation. through digital transformation.
</p> </p>
</CardContent> </CardContent>
</Card> </Card>
@ -99,8 +99,8 @@ export default function CorpViewCaseStudies() {
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-blue-200/70"> <p className="text-sm text-blue-200/70">
Optimized operations and reduced overhead through strategic Optimized operations and reduced overhead through
consulting. strategic consulting.
</p> </p>
</CardContent> </CardContent>
</Card> </Card>

View file

@ -45,7 +45,8 @@ export default function FoundationContribute() {
<p className="text-lg text-red-100/90 sm:text-xl"> <p className="text-lg text-red-100/90 sm:text-xl">
Help us democratize technology through open source. Your Help us democratize technology through open source. Your
contributions directly impact millions of developers worldwide. contributions directly impact millions of developers
worldwide.
</p> </p>
<div className="flex flex-col gap-4 sm:flex-row"> <div className="flex flex-col gap-4 sm:flex-row">
@ -78,9 +79,7 @@ export default function FoundationContribute() {
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors"> <Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
<CardHeader> <CardHeader>
<Code className="h-8 w-8 text-red-400 mb-2" /> <Code className="h-8 w-8 text-red-400 mb-2" />
<CardTitle className="text-red-300"> <CardTitle className="text-red-300">Write Code</CardTitle>
Write Code
</CardTitle>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-red-200/70"> <p className="text-sm text-red-200/70">
@ -108,9 +107,7 @@ export default function FoundationContribute() {
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors"> <Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
<CardHeader> <CardHeader>
<Globe className="h-8 w-8 text-red-400 mb-2" /> <Globe className="h-8 w-8 text-red-400 mb-2" />
<CardTitle className="text-red-300"> <CardTitle className="text-red-300">Translations</CardTitle>
Translations
</CardTitle>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-red-200/70"> <p className="text-sm text-red-200/70">
@ -129,8 +126,8 @@ export default function FoundationContribute() {
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-red-200/70"> <p className="text-sm text-red-200/70">
Help community members by answering questions and reviewing Help community members by answering questions and
contributions. reviewing contributions.
</p> </p>
</CardContent> </CardContent>
</Card> </Card>

View file

@ -78,9 +78,7 @@ export default function FoundationGetInvolved() {
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors"> <Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
<CardHeader> <CardHeader>
<Users className="h-8 w-8 text-red-400 mb-2" /> <Users className="h-8 w-8 text-red-400 mb-2" />
<CardTitle className="text-red-300"> <CardTitle className="text-red-300">Volunteer</CardTitle>
Volunteer
</CardTitle>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-red-200/70"> <p className="text-sm text-red-200/70">
@ -123,9 +121,7 @@ export default function FoundationGetInvolved() {
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors"> <Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
<CardHeader> <CardHeader>
<Heart className="h-8 w-8 text-red-400 mb-2" /> <Heart className="h-8 w-8 text-red-400 mb-2" />
<CardTitle className="text-red-300"> <CardTitle className="text-red-300">Support Us</CardTitle>
Support Us
</CardTitle>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-red-200/70"> <p className="text-sm text-red-200/70">

View file

@ -129,8 +129,8 @@ export default function GameForgeStartBuilding() {
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-green-200/70"> <p className="text-sm text-green-200/70">
Starting templates and boilerplates for various game genres Starting templates and boilerplates for various game
and styles. genres and styles.
</p> </p>
</CardContent> </CardContent>
</Card> </Card>

View file

@ -44,9 +44,9 @@ export default function LabsExploreResearch() {
</h1> </h1>
<p className="text-lg text-yellow-100/90 sm:text-xl"> <p className="text-lg text-yellow-100/90 sm:text-xl">
Discover cutting-edge projects, publications, and breakthroughs Discover cutting-edge projects, publications, and
from our research initiatives. See what we're working on to shape breakthroughs from our research initiatives. See what we're
the future. working on to shape the future.
</p> </p>
<div className="flex flex-col gap-4 sm:flex-row"> <div className="flex flex-col gap-4 sm:flex-row">
@ -130,8 +130,8 @@ export default function LabsExploreResearch() {
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-sm text-yellow-200/70"> <p className="text-sm text-yellow-200/70">
Building open-source tools and frameworks for the developer Building open-source tools and frameworks for the
community. developer community.
</p> </p>
</CardContent> </CardContent>
</Card> </Card>

View file

@ -44,8 +44,8 @@ export default function LabsJoinTeam() {
</h1> </h1>
<p className="text-lg text-yellow-100/90 sm:text-xl"> <p className="text-lg text-yellow-100/90 sm:text-xl">
Join a team of passionate researchers and developers pushing the Join a team of passionate researchers and developers pushing
boundaries of technology. Help us shape the future. the boundaries of technology. Help us shape the future.
</p> </p>
<div className="flex flex-col gap-4 sm:flex-row"> <div className="flex flex-col gap-4 sm:flex-row">
@ -104,7 +104,8 @@ export default function LabsJoinTeam() {
</CardHeader> </CardHeader>
<CardContent className="space-y-4"> <CardContent className="space-y-4">
<p className="text-sm text-yellow-200/70"> <p className="text-sm text-yellow-200/70">
Build tools and platforms that empower our research efforts. Build tools and platforms that empower our research
efforts.
</p> </p>
<Button <Button
variant="outline" variant="outline"
@ -124,7 +125,8 @@ export default function LabsJoinTeam() {
</CardHeader> </CardHeader>
<CardContent className="space-y-4"> <CardContent className="space-y-4">
<p className="text-sm text-yellow-200/70"> <p className="text-sm text-yellow-200/70">
Start your career in cutting-edge research and development. Start your career in cutting-edge research and
development.
</p> </p>
<Button <Button
variant="outline" variant="outline"
@ -155,8 +157,8 @@ export default function LabsJoinTeam() {
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<p className="text-yellow-200/70"> <p className="text-yellow-200/70">
Contribute to research that shapes the future of technology Contribute to research that shapes the future of
and impacts millions. technology and impacts millions.
</p> </p>
</CardContent> </CardContent>
</Card> </Card>