Refactor certification section

This commit is contained in:
Ariful Alam
2022-12-09 20:51:21 +06:00
parent fcbc08d483
commit ae8cc57533
5 changed files with 45 additions and 45 deletions

View File

@@ -68,7 +68,7 @@
✓ [Social Links](#social-links)
✓ [Skill Section](#skills)
✓ [Experience Section](#experience)
✓ [Certifications Section](#certifications)
✓ [Certification Section](#certifications)
✓ [Education Section](#education)
✓ [Projects Section](#projects)
✓ [Blog Posts Section](#blog-posts)
@@ -249,7 +249,7 @@ const config = {
body: 'Certification Body Name',
name: 'Sample Certification',
year: 'March 2022',
certLink: 'https://example.com'
link: 'https://example.com',
},
],
education: [
@@ -491,27 +491,6 @@ module.exports = {
Empty array will hide the experience section.
### Certifications
Provide your industry certifications in `certifications`.
```js
// gitprofile.config.js
module.exports = {
// ...
certifications: [
{
body: 'Certification Body Name',
name: 'My Sample Certification',
year: 'March 2022',
certLink: 'https://example.com'
},
],
};
```
Empty array will hide the certifications section.
### Education
Provide your education history in `education`.
@@ -539,6 +518,27 @@ module.exports = {
Empty array will hide the education section.
### Certifications
Provide your industry certifications in `certifications`.
```js
// gitprofile.config.js
module.exports = {
// ...
certifications: [
{
name: 'Lorem ipsum',
body: 'Lorem ipsum dolor sit amet',
year: 'March 2022',
link: 'https://example.com',
},
],
};
```
Empty array will hide the certifications section.
### Projects
Your public repo from GitHub will be displayed here automatically. You can limit how many projects do you want to be displayed. Also, you can hide forked or specific repo.