tangled
alpha
login
or
join now
atpota.to
/
flushes.app
16
fork
atom
The 1st decentralized social network for sharing when you're on the toilet. Post a "flush" today! Powered by the AT Protocol.
16
fork
atom
overview
issues
pulls
pipelines
fix
dame-is
3 months ago
916b07f4
9f7f6651
+18
-17
1 changed file
expand all
collapse all
unified
split
src
app
profile
[handle]
page.tsx
+18
-17
src/app/profile/[handle]/page.tsx
···
569
</>
570
)}
571
572
-
<a
573
-
href={profileData ? `https://anisota.net/profile/${profileData.handle}` : `https://anisota.net/profile/${handle}`}
574
-
target="_blank"
575
-
rel="noopener noreferrer"
576
-
className={styles.viewOnBluesky}
577
-
>
578
-
View account on Anisota
579
-
</a>
580
-
581
-
<a
582
-
href={profileData ? `https://bsky.app/profile/${profileData.handle}` : `https://bsky.app/profile/${handle}`}
583
-
target="_blank"
584
-
rel="noopener noreferrer"
585
-
className={styles.viewOnBluesky}
586
-
>
587
-
View account on Bluesky
588
-
</a>
0
589
</div>
590
</div>
591
···
569
</>
570
)}
571
572
+
<div className={styles.viewOnBluesky}>
573
+
View account on{' '}
574
+
<a
575
+
href={profileData ? `https://anisota.net/profile/${profileData.handle}` : `https://anisota.net/profile/${handle}`}
576
+
target="_blank"
577
+
rel="noopener noreferrer"
578
+
>
579
+
Anisota
580
+
</a>
581
+
{' '}or{' '}
582
+
<a
583
+
href={profileData ? `https://bsky.app/profile/${profileData.handle}` : `https://bsky.app/profile/${handle}`}
584
+
target="_blank"
585
+
rel="noopener noreferrer"
586
+
>
587
+
Bluesky
588
+
</a>
589
+
</div>
590
</div>
591
</div>
592