mistake in template showing incorrect certificates in other languages than english

This commit is contained in:
becarta
2025-02-18 03:21:44 +01:00
parent 6609f84636
commit ffabad6ecf

View File

@@ -133,96 +133,26 @@ const metadata = {
id="certifications"
title={t.certifications.title}
subtitle={t.certifications.subtitle}
testimonials={[
{
name: t.certifications.items[0].name,
issueDate: t.certifications.items[0].issueDate,
description: t.certifications.items[0].description,
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
image: {
src: NexthinkAppExp,
alt: 'Nexthink Professional in Application Experience Management badge',
loading: 'lazy',
},
testimonials={t.certifications.items.map((cert, index) => ({
name: cert.name,
issueDate: cert.issueDate,
description: cert.description,
linkUrl: cert.linkUrl,
image: {
src: [
NexthinkAppExp,
NexthinkAdministrator,
NexthinkAssociate,
pcep,
MicrosoftAssociate,
MicrosoftFundamentals,
MicrosoftAssociate,
MicrosoftFundamentals,
][index],
alt: cert.image.alt,
loading: 'lazy',
},
{
name: 'Certified Nexthink Administrator',
issueDate: 'Date Issued: 11-2024',
description: 'Earning the Nexthink Platform Administration certification demonstrates proficiency in configuring and customizing the Nexthink Platform to meet organizational needs.',
linkUrl: 'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
image: {
src: NexthinkAdministrator,
alt: 'Nexthink Administrator badge',
loading: 'lazy',
},
},
{
name: 'Certified Nexthink Associate',
issueDate: 'Date Issued: 11-2024',
description: 'Earning the Nexthink Infinity Fundamentals certification validates your understanding of the Nexthink Infinity platform and its role in enhancing digital employee experience.',
linkUrl: 'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
image: {
src: NexthinkAssociate,
alt: 'Nexthink Associate badge',
loading: 'lazy',
},
},
{
name: 'Certified Entry-Level Python Programmer',
issueDate: 'Date Issued: 11-2023',
description: 'Earning the PCEP™ certification demonstrates proficiency in fundamental Python programming concepts, including data types, control flow, data collections, functions, and exception handling.',
linkUrl: 'https://pythoninstitute.org/pcep',
image: {
src: pcep,
alt: 'PCEP™ Certified Entry-Level Python Programmer badge',
loading: 'lazy',
},
},
{
name: 'Modern Desktop Administrator Associate',
issueDate: 'Date Issued: 06-2023',
description: 'Earning the Modern Desktop Administrator Associate certification demonstrates proficiency in deploying, configuring, securing, managing, and monitoring devices and client applications within an enterprise environment.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/modern-desktop/?practice-assessment-type=certification',
image: {
src: MicrosoftAssociate,
alt: 'Microsoft Certified Associate badge',
loading: 'lazy',
},
},
{
name: 'Microsoft 365 Fundamentals',
issueDate: 'Date Issued: 05-2023',
description: 'Earning the Microsoft 365 Certified: Fundamentals certification demonstrates foundational knowledge of cloud-based solutions, including productivity, collaboration, security, compliance, and Microsoft 365 services.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/microsoft-365-fundamentals/?practice-assessment-type=certification',
image: {
src: MicrosoftFundamentals,
alt: 'Microsoft 365 Fundamentals badge',
loading: 'lazy',
},
},
{
name: 'Teams Administrator Associate',
issueDate: 'Date Issued: 06-2021',
description: 'Earning the Teams Administrator Associate certification demonstrates your ability to plan, deploy, configure, and manage Microsoft Teams to facilitate efficient collaboration and communication within a Microsoft 365 environment.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/m365-teams-administrator-associate/?practice-assessment-type=certification',
image: {
src: MicrosoftAssociate,
alt: 'Microsoft Certified Associate badge',
loading: 'lazy',
},
},
{
name: 'Azure Fundamentals',
issueDate: 'Date Issued: 01-2020',
description: 'Earning the Microsoft Certified: Azure Fundamentals certification demonstrates foundational knowledge of cloud concepts, core Azure services, and Azure management and governance features and tools.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/azure-fundamentals/?practice-assessment-type=certification',
image: {
src: MicrosoftFundamentals,
alt: 'Azure Fundamentals badge',
loading: 'lazy',
},
},
]}
}))}
/>
<!-- Features3 Widget -->