diff --git a/src/components/GitProfile.jsx b/src/components/GitProfile.jsx index 8771169..d6d5c88 100644 --- a/src/components/GitProfile.jsx +++ b/src/components/GitProfile.jsx @@ -18,6 +18,7 @@ import { setupHotjar, tooManyRequestError, sanitizeConfig, + skeleton, } from '../helpers/utils'; import { HelmetProvider } from 'react-helmet-async'; import PropTypes from 'prop-types'; @@ -208,10 +209,15 @@ const GitProfile = ({ config }) => { rel="noreferrer" >
- Made with{' '} - GitProfile and ❤️ -
+ {loading ? ( + skeleton({ width: 'w-52', height: 'h-6' }) + ) : ( ++ Made with{' '} + GitProfile and + ❤️ +
+ )}