diff --git a/src/components/experience/index.jsx b/src/components/experience/index.jsx index cefd8a6..afb6ef5 100644 --- a/src/components/experience/index.jsx +++ b/src/components/experience/index.jsx @@ -2,7 +2,7 @@ import { skeleton } from '../../helpers/utils'; import { Fragment } from 'react'; import PropTypes from 'prop-types'; -const ListItem = ({ time, position, company, link }) => ( +const ListItem = ({ time, position, company, link }) => (
  • ( >
    {time}

    {position}

    -
    {company}
    +
    + + {company} + +
  • ); @@ -70,7 +74,9 @@ const Experience = ({ experiences, loading }) => { time={`${experience.from} - ${experience.to}`} position={experience.position} company={experience.company} - link={experience.companyLink ? experience.companyLink: null} + link={ + experience.companyLink ? experience.companyLink : null + } /> ))}