From b272ea7ff629f86e93b892d42cd52689758c7a6b Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 13 Oct 2025 23:36:47 +0000 Subject: [PATCH] Render new members tab conditionally cgen-67357d5937ea4ba5bc9e0dfbcf8211bb --- client/pages/Community.tsx | 280 +++++++++++++++++++------------------ 1 file changed, 141 insertions(+), 139 deletions(-) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index cc216cdf..d9e98a17 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -1420,7 +1420,7 @@ export default function Community() { "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=120&h=120&fit=crop&crop=face", title: "AI Researcher", contributions: 134, - badge: "🧠 AI Pioneer", + badge: "��� AI Pioneer", speciality: "Machine Learning", bio: "Builds guardrailed inference pipelines and shares evaluation playbooks weekly.", recentContribution: @@ -1816,150 +1816,152 @@ export default function Community() { - - {/* New Member Hub */} -
-
- -
- - -
-
-
- -
-
-

- Welcome to AeThex -

-

- Learn how to customise your profile, meet mentors, and ship your first contribution. -

-
- -
-
-
-
-

- Orientation snapshot -

-
-
- Average onboarding time - 22 mins -
-
- Mentors online right now - 18 -
-
- Starter quests completed this week - 412 -
-
-
- - - -
- - -
- - First steps checklist -
- - Ship your first wins this week - - - Work through the essentials and unlock the New Recruit badge. - -
- -
    - {newMemberSteps.map((step) => { - const Icon = step.icon; - return ( -
  • -
    - -
    -
    -

    - {step.title} -

    -

    - {step.description} -

    -
    -
  • - ); - })} -
-
-
- - - -
- - Quick wins -
- - Jump into the right resources - - - Explore guides and shortcuts tailored for first-time members. - -
- -
- {newMemberResources.map((resource) => ( -
-
-
-

- {resource.title} -

-

- {resource.description} -

-
- -
- + {activeTab === "new-members" && ( + + {/* New Member Hub */} +
+
+ +
+ + +
+
+
+
- ))} +
+

+ Welcome to AeThex +

+

+ Learn how to customise your profile, meet mentors, and ship your first contribution. +

+
+ +
+
+
+
+

+ Orientation snapshot +

+
+
+ Average onboarding time + 22 mins +
+
+ Mentors online right now + 18 +
+
+ Starter quests completed this week + 412 +
+
+ +
+ + +
+ + First steps checklist +
+ + Ship your first wins this week + + + Work through the essentials and unlock the New Recruit badge. + +
+ +
    + {newMemberSteps.map((step) => { + const Icon = step.icon; + return ( +
  • +
    + +
    +
    +

    + {step.title} +

    +

    + {step.description} +

    +
    +
  • + ); + })} +
+
+
+ + + +
+ + Quick wins +
+ + Jump into the right resources + + + Explore guides and shortcuts tailored for first-time members. + +
+ +
+ {newMemberResources.map((resource) => ( +
+
+
+

+ {resource.title} +

+

+ {resource.description} +

+
+ +
+ +
+ ))} +
+
+
+
-
-
-
+
+
+ )} {/* Knowledge Base */}