feat: show node feed explainer even when empty

This commit is contained in:
Christomatt
2026-02-01 04:07:48 +01:00
parent daa40dc1ac
commit 3bf56cca82
+12 -4
View File
@@ -361,10 +361,18 @@ export default function ExplorePage() {
) : loading ? (
<div className="explore-loading">Loading posts...</div>
) : nodePosts.length === 0 ? (
<div className="explore-empty">
<Server size={24} />
<p>No posts on this node yet</p>
</div>
<>
<div className="feed-meta card">
<div className="feed-meta-title">Node feed</div>
<div className="feed-meta-body">
A chronological feed of all posts from users on this node. See what the local community is sharing.
</div>
</div>
<div className="explore-empty">
<Server size={24} />
<p>No posts on this node yet</p>
</div>
</>
) : (
<>
<div className="feed-meta card">