Update get-contact-href.js

add codepen
This commit is contained in:
Rémi BRUGUIER
2019-09-08 19:33:06 +02:00
committed by GitHub
parent aadea63ef8
commit edf37bdd36

View File

@@ -36,6 +36,9 @@ const getContactHref = (name: string, contact: string) => {
case 'weibo': case 'weibo':
href = `https://www.weibo.com/${contact}`; href = `https://www.weibo.com/${contact}`;
break; break;
case 'codepen':
href = `https://www.codepen.io/${contact}`;
break;
default: default:
href = contact; href = contact;
break; break;