mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Add my profile and windowsphone icon (#901)
This commit is contained in:
parent
e0d18a80eb
commit
61bf1ccc16
5 changed files with 23 additions and 3 deletions
|
|
@ -63,7 +63,7 @@ module.exports.Schema = Joi.object({
|
||||||
twitter: Joi.string().pattern(new RegExp(/^@?(\w){1,15}$/)),
|
twitter: Joi.string().pattern(new RegExp(/^@?(\w){1,15}$/)),
|
||||||
emoji: Joi.string().allow(''),
|
emoji: Joi.string().allow(''),
|
||||||
computer: Joi.string().valid('apple', 'windows', 'linux'),
|
computer: Joi.string().valid('apple', 'windows', 'linux'),
|
||||||
phone: Joi.string().valid('iphone', 'android'),
|
phone: Joi.string().valid('iphone', 'android', 'windowsphone'),
|
||||||
tags: Joi.array().items(Joi.string()),
|
tags: Joi.array().items(Joi.string()),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@ Person.propTypes = {
|
||||||
tags: PropTypes.arrayOf(PropTypes.string),
|
tags: PropTypes.arrayOf(PropTypes.string),
|
||||||
country: PropTypes.string,
|
country: PropTypes.string,
|
||||||
computer: PropTypes.oneOf(['apple', 'windows', 'linux']),
|
computer: PropTypes.oneOf(['apple', 'windows', 'linux']),
|
||||||
phone: PropTypes.oneOf(['iphone', 'android']),
|
phone: PropTypes.oneOf(['iphone', 'android', 'windowsphone']),
|
||||||
twitter(props, propName, componentName) {
|
twitter(props, propName, componentName) {
|
||||||
if (!/^@?(\w){1,15}$/.test(props[propName])) {
|
if (!/^@?(\w){1,15}$/.test(props[propName])) {
|
||||||
return new Error(
|
return new Error(
|
||||||
|
|
|
||||||
19
src/data.js
19
src/data.js
|
|
@ -9397,6 +9397,25 @@ module.exports = [
|
||||||
phone: 'iphone',
|
phone: 'iphone',
|
||||||
tags: ['Developer', 'Backend', 'Ruby', 'Rails', 'Goby'],
|
tags: ['Developer', 'Backend', 'Ruby', 'Rails', 'Goby'],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Jérémie Bertrand',
|
||||||
|
description: 'Developer',
|
||||||
|
url: 'https://laedit.net/uses/',
|
||||||
|
twitter: '@laedit',
|
||||||
|
emoji: '🐧',
|
||||||
|
country: '🇫🇷',
|
||||||
|
computer: 'windows',
|
||||||
|
phone: 'windowsphone',
|
||||||
|
tags: [
|
||||||
|
'Developer',
|
||||||
|
'Back End',
|
||||||
|
'.NET Core',
|
||||||
|
'TypeScript',
|
||||||
|
'C#',
|
||||||
|
'.NET',
|
||||||
|
'JavaScript',
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Tony Mamedbekov',
|
name: 'Tony Mamedbekov',
|
||||||
description:
|
description:
|
||||||
|
|
|
||||||
BIN
src/images/windowsphone.png
Normal file
BIN
src/images/windowsphone.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -1,7 +1,8 @@
|
||||||
import iphone from '../images/iphone.png';
|
import iphone from '../images/iphone.png';
|
||||||
import android from '../images/android.png';
|
import android from '../images/android.png';
|
||||||
|
import windowsphone from '../images/windowsphone.png';
|
||||||
import windows from '../images/windows.svg';
|
import windows from '../images/windows.svg';
|
||||||
import apple from '../images/apple.svg';
|
import apple from '../images/apple.svg';
|
||||||
import linux from '../images/linux.png';
|
import linux from '../images/linux.png';
|
||||||
|
|
||||||
export { iphone, android, windows, apple, linux };
|
export { iphone, android, windowsphone, windows, apple, linux };
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue