From 3421482830267cb67d8423a3358463bf18d2f5c6 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Thu, 13 Nov 2025 07:15:16 +0000 Subject: [PATCH] completionId: cgen-6b248c4a45de45b6980104d4de39abde cgen-6b248c4a45de45b6980104d4de39abde --- client/pages/Explore.tsx | 208 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 208 insertions(+) diff --git a/client/pages/Explore.tsx b/client/pages/Explore.tsx index 67eaa502..66d2ee02 100644 --- a/client/pages/Explore.tsx +++ b/client/pages/Explore.tsx @@ -434,6 +434,214 @@ export default function Explore() { + {/* Arms Directory */} +
+
+
+

+ The 7 Arms of AeThex +

+

+ Explore each specialized division shaping the future +

+
+ +
+ {ARMS.map((arm, idx) => { + const Icon = arm.icon; + return ( + + +
+ +
+
+

+ {arm.label} +

+

+ {arm.description} +

+
+
+

+ Focus: +

+

+ {arm.focus} +

+
+
+
+ ); + })} +
+
+
+ + {/* Featured Posts Section */} + {!isLoadingFeed && featuredPosts.length > 0 && ( + + )} + + {/* Creator Spotlights Section */} + {!isLoadingFeed && topCreators.length > 0 && ( +
+
+
+

+ Top Creators +

+

+ Meet the most engaged members of our community +

+
+ +
+ {topCreators.map((creator: any, idx: number) => ( + + +
+ + + + {creator.full_name?.[0]?.toUpperCase() || "C"} + + +
+ +
+

+ {creator.full_name || creator.username} +

+

+ {creator.username} +

+
+ +
+
+

+ {creator.posts} +

+

Posts

+
+
+

+ {creator.likes} +

+

Likes

+
+
+ + +
+
+ ))} +
+
+
+ )} + {/* Labs Spotlight */}