diff --git a/src/components/Person.js b/src/components/Person.js index 6190444a4..21039a9f4 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -106,6 +106,19 @@ export default function Person({ person }) { )} + + {/* If they have a bluesky, and no mastodon and no twitter, show that */} + {person.bluesky && !person.mastodon && !person.twitter && ( +
+ )} ); diff --git a/src/data.js b/src/data.js index 71efba1f7..45f2c3d48 100644 --- a/src/data.js +++ b/src/data.js @@ -8,6 +8,7 @@ * @property {string} country - flag emoji for contributor's country * @property {string} [twitter] - optional Twitter username (beginning with `@`) * @property {string} [mastodon] - optional Mastodon username & server (beginning with `@`, ex: `@hello@mastodon.social`) + * @property {string} [bluesky] - optional Bluesky (bsky.app) handle (do not use `@`) * @property {string} [emoji] - some emoji corresponding to the contributor * @property {'apple' | 'windows' | 'linux' | 'bsd'} [computer] * @property {'iphone' | 'android' | 'windowsphone' | 'flipphone'} [phone] @@ -3844,7 +3845,7 @@ module.exports = [ name: 'Salma Alam-Naylor', description: 'I write code for your entertainment.', url: 'https://whitep4nth3r.com/uses', - twitter: '@whitep4nth3r', + bluesky: 'whitep4nth3r.com', emoji: '⚡️', country: '🇬🇧', computer: 'apple',