Merge pull request #1930 from SayakMukhopadhyay/fix-flag-emojis

Fix emojis for flags, computer and phone names and also add a logo for bsd
This commit is contained in:
Blake Campbell 2025-08-28 09:53:01 -04:00 committed by GitHub
commit 02b2b74cc6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 9 deletions

View file

@ -144,7 +144,7 @@ Person.propTypes = {
description: PropTypes.string,
tags: PropTypes.arrayOf(PropTypes.string),
country: PropTypes.string,
computer: PropTypes.oneOf(['apple', 'windows', 'linux']),
computer: PropTypes.oneOf(['apple', 'windows', 'linux', 'bsd']),
phone: PropTypes.oneOf(['iphone', 'android', 'windowsphone', 'flipphone']),
twitter(props, propName, componentName) {
if (!/^@?(\w){1,15}$/.test(props[propName])) {

View file

@ -223,7 +223,7 @@ module.exports = [
description: 'Crafting the future, Today.',
url: 'https://yesbhautik.co.in/uses',
emoji: '🍀',
country: 'in',
country: '🇮🇳',
twitter: '@yesbhautik',
computer: 'apple',
phone: 'android',
@ -5532,8 +5532,8 @@ module.exports = [
url: 'https://www.michaelkitzman.com/uses',
emoji: '🤔',
country: '🇺🇸',
computer: 'mac',
phone: 'ios',
computer: 'apple',
phone: 'iphone',
tags: [
'Frontend',
'Web Developer',
@ -11331,7 +11331,7 @@ module.exports = [
'An aspiring financial data analyst, seeking new projects and opportunities',
url: 'https://the-quach.com/uses/',
emoji: '🔮',
country: 'ca',
country: '🇨🇦',
computer: 'apple',
phone: 'iphone',
tags: [
@ -18553,7 +18553,7 @@ module.exports = [
'Full-Stack Developer from Germany with a focus on frontend and build processes/tooling.',
url: 'https://pixelde.su/uses',
emoji: '🎁',
country: 'de',
country: '🇩🇪',
computer: 'windows',
phone: 'iphone',
tags: [
@ -19185,8 +19185,8 @@ module.exports = [
twitter: '@albertogalca',
emoji: '🤘🏼',
country: '🇪🇸',
computer: 'mac',
phone: 'ios',
computer: 'apple',
phone: 'iphone',
tags: [
'Bear',
'React',

BIN
src/images/bsd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

View file

@ -5,5 +5,6 @@ import windows from '../images/windows.svg';
import apple from '../images/apple.svg';
import linux from '../images/linux.png';
import flipphone from '../images/flip-phone.png';
import bsd from '../images/bsd.png';
export { iphone, android, windowsphone, windows, apple, linux, flipphone };
export { iphone, android, windowsphone, windows, apple, linux, flipphone, bsd };