mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Try and make the file formatted in the same way as it was previously
This commit is contained in:
parent
239788d048
commit
2755156867
1 changed files with 6 additions and 5 deletions
|
|
@ -85,8 +85,7 @@ export default function Person({ person }) {
|
||||||
<a
|
<a
|
||||||
href={`https://twitter.com/${person.twitter.replace("@", "")}`}
|
href={`https://twitter.com/${person.twitter.replace("@", "")}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer">
|
||||||
>
|
|
||||||
<span className="at">@</span>
|
<span className="at">@</span>
|
||||||
{person.twitter.replace("@", "")}
|
{person.twitter.replace("@", "")}
|
||||||
</a>
|
</a>
|
||||||
|
|
@ -98,7 +97,8 @@ export default function Person({ person }) {
|
||||||
<div className="SocialHandle">
|
<div className="SocialHandle">
|
||||||
<a href={`https://${mastodonServer}/@${mastodonHandle}`}
|
<a href={`https://${mastodonServer}/@${mastodonHandle}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer">
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
<span className="at">@</span>
|
<span className="at">@</span>
|
||||||
{mastodonHandle}
|
{mastodonHandle}
|
||||||
</a>
|
</a>
|
||||||
|
|
@ -108,9 +108,10 @@ export default function Person({ person }) {
|
||||||
{/* If they have a bluesky, and no mastodon and no twitter, show that */}
|
{/* If they have a bluesky, and no mastodon and no twitter, show that */}
|
||||||
{person.bluesky && !person.mastodon && !person.twitter && (
|
{person.bluesky && !person.mastodon && !person.twitter && (
|
||||||
<div className="SocialHandle">
|
<div className="SocialHandle">
|
||||||
<a href={`https://bsky.app/profile/${person.bluesky}`}
|
<a href={`https://bsky.app/profile/${person.bluesky}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer">
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
<span className="at">@</span>
|
<span className="at">@</span>
|
||||||
{person.bluesky}
|
{person.bluesky}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue