diff --git a/gitprofile.config.js b/gitprofile.config.js index e446b05..fde1b12 100644 --- a/gitprofile.config.js +++ b/gitprofile.config.js @@ -64,6 +64,7 @@ const config = { body: 'Certification Body Name', name: 'My Sample Certification', year: 'March 2022', + certLink: 'https://example.com' }, ], education: [ diff --git a/src/components/certifications/index.jsx b/src/components/certifications/index.jsx index 2405ef0..e45e4b7 100644 --- a/src/components/certifications/index.jsx +++ b/src/components/certifications/index.jsx @@ -2,15 +2,19 @@ import { skeleton } from '../../helpers/utils'; import { Fragment } from 'react'; import PropTypes from 'prop-types'; -const ListItem = ({ year, name, body }) => ( +const ListItem = ({ year, name, body, certLink }) => (