-
Notifications
You must be signed in to change notification settings - Fork 0
Link Azure AI certificate to Credly and use local ITIL image proof #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| import React from 'react'; | ||
| import styled from 'styled-components'; | ||
| import itilCertificate from '../images/itil-4-certificate.png'; | ||
|
|
||
| const Section = styled.section` | ||
| padding: 4rem 0; | ||
|
|
@@ -38,14 +39,22 @@ const Certifications = () => { | |
| <h2>Certifications</h2> | ||
| <CertificationCard> | ||
| <h3>Microsoft Certified: Azure AI Fundamentals</h3> | ||
| <a href="#" target="_blank">View Certificate</a> | ||
| <a | ||
| href="https://www.credly.com/badges/1755ae09-3878-4274-bb2d-88e292cd0b5b?source=linked_in_profile" | ||
| target="_blank" | ||
| rel="noreferrer" | ||
| > | ||
| View Certificate | ||
| </a> | ||
| </CertificationCard> | ||
| <CertificationCard> | ||
| <h3>ITIL 4 Foundation Certificate in IT Service Management</h3> | ||
| <p>PeopleCert</p> | ||
| <p>Issued Apr 2025 · Expires Apr 2028</p> | ||
| <p>Credential ID ITIL 4 Foundation Certificate in IT Service Management</p> | ||
| <a href="#" target="_blank">View Certificate</a> | ||
| <a href={itilCertificate} target="_blank" rel="noreferrer"> | ||
|
||
| View Certificate | ||
| </a> | ||
| </CertificationCard> | ||
| </Section> | ||
| ); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For links that open in a new tab, it's recommended to use
rel="noopener noreferrer"instead of justrel="noreferrer". Thenoopenerattribute prevents the new page from accessing thewindow.openerproperty, which is a security best practice to prevent potential tabnabbing attacks.