Link Azure AI certificate to Credly and use local ITIL image proof#6
Conversation
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://witty-mud-031b23a0f-6.eastus2.2.azurestaticapps.net |
There was a problem hiding this comment.
Pull request overview
This PR replaces placeholder certificate links with actual proof sources and improves security attributes for external links in the Certifications component.
- Updated Azure AI Fundamentals certificate link to point to Credly badge URL
- Configured ITIL 4 certificate link to open the local image file
- Added security attributes (
rel="noreferrer") to links that open in new tabs
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <a | ||
| href="https://www.credly.com/badges/1755ae09-3878-4274-bb2d-88e292cd0b5b?source=linked_in_profile" | ||
| target="_blank" | ||
| rel="noreferrer" |
There was a problem hiding this comment.
For links that open in a new tab, it's recommended to use rel="noopener noreferrer" instead of just rel="noreferrer". The noopener attribute prevents the new page from accessing the window.opener property, which is a security best practice to prevent potential tabnabbing attacks.
| <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"> |
There was a problem hiding this comment.
For links that open in a new tab, it's recommended to use rel="noopener noreferrer" instead of just rel="noreferrer". The noopener attribute prevents the new page from accessing the window.opener property, which is a security best practice to prevent potential tabnabbing attacks.
Motivation
#certificate links with the requested proof sources so viewers can open the actual evidence.itil-4-certificate.pngimage for the ITIL 4 proof instead of an empty anchor.Description
import itilCertificate from '../images/itil-4-certificate.png'.https://www.credly.com/badges/1755ae09-3878-4274-bb2d-88e292cd0b5b?source=linked_in_profile.href={itilCertificate}.rel="noreferrer"to anchors that open in a new tab for improved security.Testing
Codex Task