Remove Skype and add missing discord references (#760)
This commit is contained in:
parent
9ef19a2ab5
commit
98eb69aed5
@ -224,7 +224,7 @@ const CONFIG = {
|
||||
medium: 'arifszn',
|
||||
dev: 'arifszn',
|
||||
stackoverflow: '', // example: '1/jeff-atwood'
|
||||
skype: '',
|
||||
discord: '',
|
||||
telegram: '',
|
||||
website: 'https://www.arifszn.com',
|
||||
phone: '',
|
||||
@ -508,7 +508,7 @@ Your avatar and bio will be fetched from GitHub automatically.
|
||||
|
||||
### Social Links
|
||||
|
||||
You can link your social media services you're using, including LinkedIn, X, Mastodon, ResearchGate, Facebook, Instagram, Reddit, Threads, YouTube, Udemy, Dribbble, Behance, Medium, dev, Stack Overflow, Skype, Telegram, personal website, phone and email.
|
||||
You can link your social media services you're using, including LinkedIn, X, Mastodon, ResearchGate, Facebook, Instagram, Reddit, Threads, YouTube, Udemy, Dribbble, Behance, Medium, dev, Stack Overflow, Discord, Telegram, personal website, phone and email.
|
||||
|
||||
```ts
|
||||
// gitprofile.config.ts
|
||||
@ -530,7 +530,7 @@ const CONFIG = {
|
||||
medium: '',
|
||||
dev: '',
|
||||
stackoverflow: '',
|
||||
skype: '',
|
||||
discord: '',
|
||||
telegram: '',
|
||||
website: '',
|
||||
phone: '',
|
||||
|
||||
@ -72,7 +72,7 @@ const CONFIG = {
|
||||
medium: 'arifszn',
|
||||
dev: 'arifszn',
|
||||
stackoverflow: '', // example: '1/jeff-atwood'
|
||||
skype: '',
|
||||
discord: '',
|
||||
telegram: '',
|
||||
website: 'https://www.arifszn.com',
|
||||
phone: '',
|
||||
|
||||
5
global.d.ts
vendored
5
global.d.ts
vendored
@ -187,11 +187,6 @@ interface Social {
|
||||
*/
|
||||
website?: string;
|
||||
|
||||
/**
|
||||
* Skype username
|
||||
*/
|
||||
skype?: string;
|
||||
|
||||
/**
|
||||
* Telegram username
|
||||
*/
|
||||
|
||||
@ -14,7 +14,6 @@ import {
|
||||
FaLinkedin,
|
||||
FaMastodon,
|
||||
FaReddit,
|
||||
FaSkype,
|
||||
FaStackOverflow,
|
||||
FaTelegram,
|
||||
FaYoutube,
|
||||
@ -336,14 +335,6 @@ const DetailsCard = ({ profile, loading, social, github }: Props) => {
|
||||
}
|
||||
/>
|
||||
)}
|
||||
{social?.skype && (
|
||||
<ListItem
|
||||
icon={<FaSkype />}
|
||||
title="Skype"
|
||||
value={social.skype}
|
||||
link={`skype:${social.skype}?chat`}
|
||||
/>
|
||||
)}
|
||||
{social?.telegram && (
|
||||
<ListItem
|
||||
icon={<FaTelegram />}
|
||||
|
||||
@ -59,7 +59,6 @@ export interface SanitizedSocial {
|
||||
dev?: string;
|
||||
stackoverflow?: string;
|
||||
website?: string;
|
||||
skype?: string;
|
||||
telegram?: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
|
||||
@ -78,7 +78,6 @@ export const getSanitizedConfig = (
|
||||
website: config?.social?.website,
|
||||
phone: config?.social?.phone,
|
||||
email: config?.social?.email,
|
||||
skype: config?.social?.skype,
|
||||
telegram: config?.social?.telegram,
|
||||
researchGate: config?.social?.researchGate,
|
||||
discord: config?.social?.discord,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user