generated from nhcarrigan/template
### Explanation _No response_ ### Issue _No response_ ### Attestations - [x] I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/) - [x] I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/). - [x] My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/). ### Dependencies - [ ] I have pinned the dependencies to a specific patch version. ### Style - [x] I have run the linter and resolved any errors. - [x] My pull request uses an appropriate title, matching the conventional commit standards. - [x] My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request. ### Tests - [ ] My contribution adds new code, and I have added tests to cover it. - [ ] My contribution modifies existing code, and I have updated the tests to reflect these changes. - [x] All new and existing tests pass locally with my changes. - [x] Code coverage remains at or above the configured threshold. ### Documentation _No response_ ### Versioning Patch - My pull request introduces bug fixes ONLY. Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/41 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
113 lines
2.7 KiB
TypeScript
113 lines
2.7 KiB
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
/**
|
|
* List of certifications to render.
|
|
*/
|
|
export const Certifications: Array<{
|
|
name: string;
|
|
fileName: string;
|
|
issuer: string;
|
|
date: Date;
|
|
}> = [
|
|
{
|
|
date: new Date("April 17 2020"),
|
|
fileName: "responsive-web-design.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Responsive Web Design",
|
|
},
|
|
{
|
|
date: new Date("April 24, 2020"),
|
|
fileName: "javascript.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "JavaScript Algorithms and Data Structures",
|
|
},
|
|
{
|
|
date: new Date("April 28, 2020"),
|
|
fileName: "front-end-libs.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Front End Libraries",
|
|
},
|
|
{
|
|
date: new Date("May 19, 2020"),
|
|
fileName: "infosec.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Information Security and Quality Assurance",
|
|
},
|
|
{
|
|
date: new Date("May 25, 2020"),
|
|
fileName: "legacy-full-stack.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Full Stack Developer",
|
|
},
|
|
{
|
|
date: new Date("May 25, 2020"),
|
|
fileName: "data-visualisation.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Data Visualisation",
|
|
},
|
|
{
|
|
date: new Date("May 8 2020"),
|
|
fileName: "back-end-dev.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Back End Development and APIs",
|
|
},
|
|
{
|
|
date: new Date("July 3 2020"),
|
|
fileName: "quality-assurance.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Quality Assurance",
|
|
},
|
|
{
|
|
date: new Date("August 14 2020"),
|
|
fileName: "legacy-front-end.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Legacy Front End",
|
|
},
|
|
{
|
|
date: new Date("July 3, 2020"),
|
|
fileName: "scientific-computing.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Scientific Computing with Python",
|
|
},
|
|
{
|
|
date: new Date("May 9 2024"),
|
|
fileName: "mongo-nodejs.jpg",
|
|
issuer: "MongoDB",
|
|
name: "Node.js Developer",
|
|
},
|
|
{
|
|
date: new Date("May 9 2024"),
|
|
fileName: "mongo-self-admin.jpg",
|
|
issuer: "MongoDB",
|
|
name: "Self-Managed Database Admin",
|
|
},
|
|
{
|
|
date: new Date("May 9 2024"),
|
|
fileName: "mongo-data-model.jpg",
|
|
issuer: "MongoDB",
|
|
name: "Data Modelling",
|
|
},
|
|
{
|
|
date: new Date("May 9 2024"),
|
|
fileName: "mongo-atlas-admin.jpg",
|
|
issuer: "MongoDB",
|
|
name: "Atlas Database Admin",
|
|
},
|
|
{
|
|
date: new Date("May 9 2024"),
|
|
fileName: "ecommerce-retail.jpg",
|
|
issuer: "MongoDB",
|
|
name: "E-Commerce Modernisation and Personalisation",
|
|
},
|
|
{
|
|
date: new Date("November 12, 2024"),
|
|
fileName: "c-sharp.png",
|
|
issuer: "freeCodeCamp",
|
|
name: "Foundational C# with Microsoft",
|
|
},
|
|
];
|