0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add empty results message and update footer links

show "no posts found" with bluesky profile link when a handle
has no results. fix handle in footer and add source repo link.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz a93d973e 90e8cce4

+11 -1
+11 -1
src/routes/+page.svelte
··· 94 94 </div> 95 95 {/if} 96 96 97 + {#if app.posts.length === 0 && !app.loading && !scanning && !optedOut && !app.error && app.handle} 98 + <div class="opted-out"> 99 + <p>no posts found for @{app.handle}</p> 100 + <a href="https://bsky.app/profile/{app.handle}" target="_blank" rel="noopener noreferrer" class="bsky-link"> 101 + view on bluesky 102 + </a> 103 + </div> 104 + {/if} 105 + 97 106 {#if app.posts.length > 0} 98 107 <div class="results"> 99 108 <div class="results-header"> ··· 145 154 {#if app.posts.length === 0 && !app.loading && !optedOut && !scanning} 146 155 <footer> 147 156 made with <a href="https://microcosm.blue" target="_blank" rel="noopener noreferrer">microcosm</a> 148 - by <a href="https://bsky.app/profile/zzstoatzz.bsky.social" target="_blank" rel="noopener noreferrer">@zzstoatzz</a> 157 + by <a href="https://bsky.app/profile/zzstoatzz.io" target="_blank" rel="noopener noreferrer">@zzstoatzz</a> 158 + · <a href="https://tangled.sh/@zzstoatzz.io/highlight" target="_blank" rel="noopener noreferrer">source</a> 149 159 </footer> 150 160 {/if} 151 161 </div>