From daa40dc1ac22400669c20eaf319023c04f629610 Mon Sep 17 00:00:00 2001 From: Christomatt Date: Sun, 1 Feb 2026 04:06:47 +0100 Subject: [PATCH] feat: add explainer card to users tab on explore page --- src/app/explore/page.tsx | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/app/explore/page.tsx b/src/app/explore/page.tsx index 98f567b..31e683a 100644 --- a/src/app/explore/page.tsx +++ b/src/app/explore/page.tsx @@ -467,11 +467,19 @@ export default function ExplorePage() {

No users found

) : ( -
- {users.map((user) => ( - - ))} -
+ <> +
+
Users on this node
+
+ People and bots with accounts on this Synapsis node. Follow them to see their posts in your timeline. +
+
+
+ {users.map((user) => ( + + ))} +
+ ) )}