From 3bf56cca8225b3f83cee0c74da79db962ca25d2b Mon Sep 17 00:00:00 2001 From: Christomatt Date: Sun, 1 Feb 2026 04:07:48 +0100 Subject: [PATCH] feat: show node feed explainer even when empty --- src/app/explore/page.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/app/explore/page.tsx b/src/app/explore/page.tsx index 31e683a..e436326 100644 --- a/src/app/explore/page.tsx +++ b/src/app/explore/page.tsx @@ -361,10 +361,18 @@ export default function ExplorePage() { ) : loading ? (
Loading posts...
) : nodePosts.length === 0 ? ( -
- -

No posts on this node yet

-
+ <> +
+
Node feed
+
+ A chronological feed of all posts from users on this node. See what the local community is sharing. +
+
+
+ +

No posts on this node yet

+
+ ) : ( <>