diff --git a/src/components/education/index.jsx b/src/components/education/index.jsx index a02de67..b852a2d 100644 --- a/src/components/education/index.jsx +++ b/src/components/education/index.jsx @@ -1,35 +1,33 @@ -import { GoPrimitiveDot } from 'react-icons/go'; import { skeleton } from '../../helpers/utils'; import config from '../../ezprofile.config'; +import { Fragment } from 'react'; const Education = ({ loading }) => { const renderSkeleton = () => { let array = []; for (let index = 0; index < 2; index++) { array.push( -
  • - - {skeleton({ width: 'w-2', height: 'h-2', className: 'mr-2' })} -
    -
    -
    - {skeleton({ - width: 'w-9/12', - height: 'h-4', - className: 'mb-2', - })} -
    -
    - {skeleton({ - width: 'w-6/12', - height: 'h-4', - className: 'mb-2', - })} -
    -
    -
    {skeleton({ width: 'w-6/12', height: 'h-3' })}
    -
    -
    +
  • +
    +
    + {skeleton({ + width: 'w-5/12', + height: 'h-4', + })} +
    +

    + {skeleton({ + width: 'w-6/12', + height: 'h-4', + className: 'my-1.5', + })} +

    +

    + {skeleton({ width: 'w-6/12', height: 'h-3' })} +

  • ); } @@ -43,41 +41,42 @@ const Education = ({ loading }) => { config.education.length !== 0 && (
    - +

    + {item.degree} +

    +

    + {item.institution} +

    + + ))} + + )} + +
    )}