a tool for shared writing and social publishing
0
fork

Configure Feed

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

added button to home to create pub if you already have a bsky account linked but no pubs

celine 1ba4f76f 66782ea4

+13 -5
+13 -5
app/home/Publications.tsx
··· 78 78 : ""} 79 79 </div> 80 80 81 - <form action="/api/oauth/login?redirect_url=/" method="GET"> 82 - <ButtonSecondary compact className="text-sm mt-3"> 83 - <BlueskyTiny /> Link Bluesky 84 - </ButtonSecondary> 85 - </form> 81 + {identity && !!identity.atp_did ? ( 82 + <Link href="/lish/createPub"> 83 + <ButtonSecondary compact className="text-sm mt-3"> 84 + Start a Publication! 85 + </ButtonSecondary> 86 + </Link> 87 + ) : ( 88 + <form action="/api/oauth/login?redirect_url=/" method="GET"> 89 + <ButtonSecondary compact className="text-sm mt-3"> 90 + <BlueskyTiny /> Link Bluesky 91 + </ButtonSecondary> 92 + </form> 93 + )} 86 94 </div> 87 95 </div> 88 96 );