diff --git a/src/App.js b/src/App.js index b29be22..8f68c0c 100644 --- a/src/App.js +++ b/src/App.js @@ -39,8 +39,7 @@ function App() { name: data.name, bio: data.bio, location: data.location, - company: data.company, - twitter: data.twitter_username, + company: data.company } dispatch(setProfile(profileData)); diff --git a/src/components/AvatarCard.js b/src/components/AvatarCard.js index 9c10b50..dba40f7 100644 --- a/src/components/AvatarCard.js +++ b/src/components/AvatarCard.js @@ -45,7 +45,7 @@ const AvatarCard = () => {
{ loading ? ( - skeleton({ width: 'w-48', height: 'h-5', className: 'mt-4' }) + skeleton({ width: 'w-48', height: 'h-5' }) ) : profile.bio }
diff --git a/src/components/Details.js b/src/components/Details.js index 986178c..73086a9 100644 --- a/src/components/Details.js +++ b/src/components/Details.js @@ -1,9 +1,9 @@ -import { GoLocation } from 'react-icons/go'; -import { AiFillGithub } from 'react-icons/ai'; +import { MdLocationOn, MdMail } from 'react-icons/md'; +import { AiFillGithub, AiFillMediumSquare } from 'react-icons/ai'; import { SiTwitter } from 'react-icons/si'; -import { BiBuilding } from 'react-icons/bi'; -import { GrLinkedinOption, GrMail } from 'react-icons/gr'; -import { ImDribbble } from 'react-icons/im'; +import { GrLinkedinOption } from 'react-icons/gr'; +import { CgDribbble } from 'react-icons/cg'; +import { FaBehanceSquare, FaBuilding, FaDev, FaFacebook, FaGlobe } from 'react-icons/fa'; import { useSelector } from 'react-redux'; import config from '../config'; import { skeleton } from '../helpers/utils'; @@ -18,8 +18,8 @@ const Details = () => { array.push((
  • - {skeleton({width: 'w-6', height: 'h-4', className: 'mr-2'})} - {skeleton({width: 'w-32', height: 'h-4'})} + {skeleton({ width: 'w-6', height: 'h-4', className: 'mr-2' })} + {skeleton({ width: 'w-32', height: 'h-4' })}
  • )) @@ -31,7 +31,7 @@ const Details = () => { return (
    -