Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions src/Components/Certifications.jsx
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;
Expand Down Expand Up @@ -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"
Comment on lines +42 to +45
Copy link

Copilot AI Dec 19, 2025

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 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.

Copilot uses AI. Check for mistakes.
>
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">
Copy link

Copilot AI Dec 19, 2025

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 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.

Copilot uses AI. Check for mistakes.
View Certificate
</a>
</CertificationCard>
</Section>
);
Expand Down
Loading