From 6c178cc163aab4101fb10b335ca824003d36dce2 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 17 Nov 2025 04:56:11 +0000 Subject: [PATCH] Update Dashboard arm click to support external links cgen-b5977d1e08ea4fb6bd9a796ecc711d4f --- client/pages/Dashboard.tsx | 6 +++++- client/pages/Index.tsx | 9 +++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index ebe2fd0b..212946d7 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -359,7 +359,11 @@ export default function Dashboard() { key={arm.id} onClick={(e) => { e.preventDefault(); - navigate(arm.href); + if (arm.external) { + window.open(arm.href, "_blank"); + } else { + navigate(arm.href); + } }} className="group relative overflow-hidden" > diff --git a/client/pages/Index.tsx b/client/pages/Index.tsx index 97b692cf..bdf5ba2e 100644 --- a/client/pages/Index.tsx +++ b/client/pages/Index.tsx @@ -65,6 +65,15 @@ export default function Index() { link: "/corp", audience: "Enterprise clients", }, + { + title: "Explore & Learn", + description: "Open source projects, educational workshops, and community resources", + icon: BookOpen, + color: "from-red-500 to-pink-500", + link: "https://aethex.foundation", + audience: "Developers & learners", + external: true, + }, { title: "Join the Network", description: "Professional networking, job board, and portfolio showcase for Roblox devs",