From fa4d1db88e04dbe4322fa5d417b5116348ed3965 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Fri, 7 Nov 2025 21:47:36 +0000 Subject: [PATCH] completionId: cgen-7ee22543c5a943bc827bd4838a9737ab cgen-7ee22543c5a943bc827bd4838a9737ab --- client/components/PageTransition.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/client/components/PageTransition.tsx b/client/components/PageTransition.tsx index 86196c9d..6f2e3133 100644 --- a/client/components/PageTransition.tsx +++ b/client/components/PageTransition.tsx @@ -8,35 +8,40 @@ interface PageTransitionProps { const getArmConfig = ( pathname: string, -): { message: string; accentColor: string } => { +): { message: string; accentColor: string; armLogo?: string } => { if (pathname.includes("/labs") || pathname.includes("/research")) { return { message: "Initializing Research Module...", accentColor: "from-yellow-500 to-yellow-400", + armLogo: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F85fe7910cff6483db1ea99c154684844?format=webp&width=800", }; } if (pathname.includes("/game-development")) { return { message: "Booting GameForge Engine...", accentColor: "from-green-500 to-green-400", + armLogo: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fcd3534c1caa0497abfd44224040c6059?format=webp&width=800", }; } if (pathname.includes("/consulting")) { return { message: "Engaging Corp Systems...", accentColor: "from-blue-500 to-blue-400", + armLogo: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fae654ecc18b241bdab273893e8231970?format=webp&width=800", }; } if (pathname.includes("/community")) { return { message: "Connecting Foundation Network...", accentColor: "from-red-500 to-red-400", + armLogo: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fc02cb1bf5056479bbb3ea4bd91f0d472?format=webp&width=800", }; } if (pathname.includes("/dev-link")) { return { message: "Loading Dev-Link Platform...", accentColor: "from-cyan-500 to-cyan-400", + armLogo: "https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=webp&width=800", }; } return {