Added issue date to certifications

This commit is contained in:
becarta
2025-02-12 06:04:06 +01:00
parent 4927008094
commit ce13898142
5 changed files with 257 additions and 200 deletions

View File

@@ -25,23 +25,24 @@ const {
<div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-6 auto-rows-fr justify-center">
{
testimonials &&
testimonials.map(({ title, linkUrl, name, description, image }) => (
testimonials.map(({ title, linkUrl, name, issueDate, description, image }) => (
<a href={linkUrl} target="_blank" rel="noopener noreferrer" class="flex flex-col justify-start items-center p-2 md:p-4 rounded-md shadow-xl dark:shadow-none dark:border dark:border-slate-600 w-[425px] mx-auto sm:mx-0">
{title && <h2 class="text-lg font-medium leading-6 pb-4 text-center">{title}</h2>}
{image && (
<div class="h-[160px] w-[160px] border-slate-200 dark:border-slate-600 mx-auto">
{typeof image === 'string' ? (
<Fragment set:html={image} />
) : (
<Image
class="h-full w-full object-cover"
width={160}
height={160}
widths={[400, 768]}
layout="fixed"
{...image}
/>
)}
<Image
class="h-full w-full object-cover"
width={160}
height={160}
widths={[400, 768]}
layout="fixed"
// If image is a string, use it as the src; otherwise assume it's an object with a src property.
src={typeof image === 'string' ? image : image.src}
// Use a default alt text if image is a string; otherwise use the provided alt.
alt={typeof image === 'string' ? 'Image' : image.alt}
// Spread the rest of the properties if image is an object.
{...(typeof image === 'string' ? {} : image)}
/>
</div>
)}
@@ -51,6 +52,7 @@ const {
{/* Text content takes up the remaining space */}
<div class="flex flex-col flex-grow items-center">
{name && <p class="text-lg font-semibold text-center">{name}</p>}
{issueDate && <p class="text-base underline italic text-muted text-center">{issueDate}</p>}
{description && <p class="text-base text-muted text-center">{description}</p>}
</div>
</a>

View File

@@ -161,92 +161,115 @@ const yearsSince = currentYear - fixedYear;
<!-- Testimonials Widget: Zertifizierungen *********** -->
<Testimonials
id="Zertifizierungen"
title="Zertifizierungen"
subtitle="Wo Wissen auf Anerkennung trifft"
testimonials={[
{
name: 'Zertifizierter Nexthink Professional',
description: 'Der Erwerb der Nexthink Certified Application Experience ManagementZertifizierung bestätigt die Fachkenntnisse in der Optimierung der Anwendungsleistung, der Gewährleistung einer nahtlosen Benutzerakzeptanz und der Steigerung der Kosteneffizienz.',
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
image: {
src: NexthinkAppExp,
alt: 'Abzeichen des Nexthink Professionals im Bereich Anwendungserfahrungsmanagement',
loading: 'lazy',
},
id="Zertifizierungen"
title="Zertifizierungen"
subtitle="Wo Wissen auf Anerkennung trifft"
testimonials={[
{
name: 'Zertifizierter Nexthink Professional',
issueDate: 'Ausstellungsdatum: 01-2025',
description:
'Der Erwerb der Zertifizierung "Nexthink Certified Application Experience Management" bestätigt die Fachkenntnisse in der Optimierung der Anwendungsleistung, der Gewährleistung einer nahtlosen Benutzerakzeptanz und der Steigerung der Kosteneffizienz.',
linkUrl:
'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
image: {
src: NexthinkAppExp,
alt: 'Nexthink Professional im Bereich Application Experience Management Abzeichen',
loading: 'lazy',
},
{
name: 'Zertifizierter Nexthink Administrator',
description: 'Das Erlangen der Nexthink Platform Administration-Zertifizierung beweist, dass Sie in der Konfiguration und Anpassung der Nexthink-Plattform zur Erfüllung organisatorischer Anforderungen versiert sind.',
linkUrl: 'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
image: {
src: NexthinkAdministrator,
alt: 'Nexthink Administrator Abzeichen',
loading: 'lazy',
},
},
{
name: 'Zertifizierter Nexthink-Administrator',
issueDate: 'Ausstellungsdatum: 11-2024',
description:
'Der Erwerb der Zertifizierung "Nexthink Platform Administration" zeigt die Kompetenz in der Konfiguration und Anpassung der Nexthink-Plattform zur Erfüllung der Anforderungen einer Organisation.',
linkUrl:
'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
image: {
src: NexthinkAdministrator,
alt: 'Nexthink Administrator-Abzeichen',
loading: 'lazy',
},
{
name: 'Zertifizierter Nexthink Associate',
description: 'Das Erlangen der Nexthink Infinity Fundamentals-Zertifizierung bestätigt Ihr Verständnis der Nexthink Infinity-Plattform und ihrer Rolle bei der Verbesserung der digitalen Mitarbeitererfahrung.',
linkUrl: 'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
image: {
src: NexthinkAssociate,
alt: 'Nexthink Associate Abzeichen',
loading: 'lazy',
},
},
{
name: 'Zertifizierter Nexthink Associate',
issueDate: 'Ausstellungsdatum: 11-2024',
description:
'Der Erwerb der Zertifizierung "Nexthink Infinity Fundamentals" bestätigt Ihr Verständnis der Nexthink Infinity-Plattform und ihrer Rolle bei der Verbesserung der digitalen Mitarbeitererfahrung.',
linkUrl:
'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
image: {
src: NexthinkAssociate,
alt: 'Nexthink Associate-Abzeichen',
loading: 'lazy',
},
{
name: 'Teams Administrator Associate',
description: 'Das Erlangen der Teams Administrator Associate-Zertifizierung zeigt Ihre Fähigkeit, Microsoft Teams zu planen, bereitzustellen, zu konfigurieren und zu verwalten, um eine effiziente Zusammenarbeit und Kommunikation in einer Microsoft 365-Umgebung zu ermöglichen.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/m365-teams-administrator-associate/?practice-assessment-type=certification',
image: {
src: MicrosoftAssociate,
alt: 'Microsoft Certified Associate Abzeichen',
loading: 'lazy',
},
},
{
name: 'Zertifizierter Python-Programmierer für Einsteiger',
issueDate: 'Ausstellungsdatum: 11-2023',
description:
'Der Erwerb der PCEP™-Zertifizierung demonstriert die Beherrschung grundlegender Python-Programmierkonzepte, einschließlich Datentypen, Kontrollfluss, Datensammlungen, Funktionen und Ausnahmebehandlung.',
linkUrl: 'https://pythoninstitute.org/pcep',
image: {
src: pcep,
alt: 'PCEP™ Abzeichen für zertifizierte Python-Programmierer für Einsteiger',
loading: 'lazy',
},
{
name: 'Modern Desktop Administrator Associate',
description: 'Das Erlangen der Modern Desktop Administrator Associate-Zertifizierung belegt Ihre Fachkenntnisse in der Bereitstellung, Konfiguration, Absicherung, Verwaltung und Überwachung von Geräten und Client-Anwendungen in einer Unternehmensumgebung.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/modern-desktop/?practice-assessment-type=certification',
image: {
src: MicrosoftAssociate,
alt: 'Microsoft Certified Associate Abzeichen',
loading: 'lazy',
},
},
{
name: 'Moderner Desktop-Administrator Associate',
issueDate: 'Ausstellungsdatum: 06-2023',
description:
'Der Erwerb der Zertifizierung "Modern Desktop Administrator Associate" zeigt die Kompetenz im Bereitstellen, Konfigurieren, Sichern, Verwalten und Überwachen von Geräten und Client-Anwendungen in einer Unternehmensumgebung.',
linkUrl:
'https://learn.microsoft.com/en-us/credentials/certifications/modern-desktop/?practice-assessment-type=certification',
image: {
src: MicrosoftAssociate,
alt: 'Microsoft Certified Associate-Abzeichen',
loading: 'lazy',
},
{
name: 'Zertifizierter Python-Programmierer (Einsteiger)',
description: 'Das Erlangen der PCEP™-Zertifizierung demonstriert Ihre Kenntnisse der grundlegenden Konzepte der Python-Programmierung einschließlich Datentypen, Kontrollstrukturen, Datenstrukturen, Funktionen und Fehlerbehandlung.',
linkUrl: 'https://pythoninstitute.org/pcep',
image: {
src: pcep,
alt: 'PCEP™ Zertifizierter Python-Programmierer (Einsteiger) Abzeichen',
loading: 'lazy',
},
},
{
name: 'Microsoft 365 Fundamentals',
issueDate: 'Ausstellungsdatum: 05-2023',
description:
'Der Erwerb der Zertifizierung "Microsoft 365 Certified: Fundamentals" demonstriert grundlegende Kenntnisse über cloudbasierte Lösungen, einschließlich Produktivität, Zusammenarbeit, Sicherheit, Compliance und Microsoft 365-Diensten.',
linkUrl:
'https://learn.microsoft.com/en-us/credentials/certifications/microsoft-365-fundamentals/?practice-assessment-type=certification',
image: {
src: MicrosoftFundamentals,
alt: 'Microsoft 365 Fundamentals-Abzeichen',
loading: 'lazy',
},
{
name: 'Microsoft 365 Fundamentals',
description: 'Das Erlangen der Microsoft 365 Certified: Fundamentals-Zertifizierung zeigt grundlegende Kenntnisse über cloudbasierte Lösungen, einschließlich Produktivität, Zusammenarbeit, Sicherheit, Compliance und Microsoft 365-Dienste.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/microsoft-365-fundamentals/?practice-assessment-type=certification',
image: {
src: MicrosoftFundamentals,
alt: 'Microsoft 365 Fundamentals Abzeichen',
loading: 'lazy',
},
},
{
name: 'Teams-Administrator Associate',
issueDate: 'Ausstellungsdatum: 06-2021',
description:
'Der Erwerb der Zertifizierung "Teams Administrator Associate" zeigt Ihre Fähigkeit, Microsoft Teams zu planen, bereitzustellen, zu konfigurieren und zu verwalten, um eine effiziente Zusammenarbeit und Kommunikation innerhalb einer Microsoft 365-Umgebung zu ermöglichen.',
linkUrl:
'https://learn.microsoft.com/en-us/credentials/certifications/m365-teams-administrator-associate/?practice-assessment-type=certification',
image: {
src: MicrosoftAssociate,
alt: 'Microsoft Certified Associate-Abzeichen',
loading: 'lazy',
},
{
name: 'Azure Fundamentals',
description: 'Das Erlangen der Microsoft Certified: Azure Fundamentals-Zertifizierung belegt grundlegende Kenntnisse über Cloud-Konzepte, Kern-Azure-Dienste sowie Verwaltungs- und Governance-Funktionen und -Tools von Azure.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/azure-fundamentals/?practice-assessment-type=certification',
image: {
src: MicrosoftFundamentals,
alt: 'Azure Fundamentals Abzeichen',
loading: 'lazy',
},
},
{
name: 'Azure Grundlagen',
issueDate: 'Ausstellungsdatum: 01-2020',
description:
'Der Erwerb der Zertifizierung "Microsoft Certified: Azure Fundamentals" demonstriert grundlegende Kenntnisse über Cloud-Konzepte, zentrale Azure-Dienste sowie Azure-Management- und Governance-Funktionen und -Werkzeuge.',
linkUrl:
'https://learn.microsoft.com/en-us/credentials/certifications/azure-fundamentals/?practice-assessment-type=certification',
image: {
src: MicrosoftFundamentals,
alt: 'Azure Fundamentals-Abzeichen',
loading: 'lazy',
},
]}
/>
},
]}
/>
<!-- Features3 Widget: Fähigkeiten ************** -->

View File

@@ -167,6 +167,7 @@ const yearsSince = currentYear - fixedYear;
testimonials={[
{
name: 'Certified Nexthink Professional',
issueDate: 'Date of issue: 01-2025',
description: 'Earning the Nexthink Certified Application Experience Management certification validates the expertise in optimizing application performance, ensuring seamless user adoption, and driving cost efficiency.',
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
image: {
@@ -177,6 +178,7 @@ const yearsSince = currentYear - fixedYear;
},
{
name: 'Certified Nexthink Administrator',
issueDate: 'Date of issue: 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: {
@@ -187,6 +189,7 @@ const yearsSince = currentYear - fixedYear;
},
{
name: 'Certified Nexthink Associate',
issueDate: 'Date of issue: 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: {
@@ -195,28 +198,9 @@ const yearsSince = currentYear - fixedYear;
loading: 'lazy',
},
},
{
name: 'Teams Administrator Associate',
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: 'Modern Desktop Administrator Associate',
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: 'Certified Entry-Level Python Programmer',
issueDate: 'Date of issue: 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: {
@@ -225,8 +209,21 @@ const yearsSince = currentYear - fixedYear;
loading: 'lazy',
},
},
{
name: 'Modern Desktop Administrator Associate',
issueDate: 'Date of issue: 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 of issue: 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: {
@@ -235,8 +232,21 @@ const yearsSince = currentYear - fixedYear;
loading: 'lazy',
},
},
{
name: 'Teams Administrator Associate',
issueDate: 'Date of issue: 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 of issue: 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: {

View File

@@ -162,95 +162,116 @@ const yearsSince = currentYear - fixedYear;
<!-- Testimonials Widget *********** -->
<Testimonials
id="Certificeringen"
title="Certificeringen"
subtitle="Waar kennis erkenning ontmoet"
testimonials={[
{
name: 'Gecertificeerde Nexthink Professional',
description: 'Het behalen van de Nexthink Certified Application Experience Managementcertificering bevestigt de expertise in het optimaliseren van applicatieprestaties, het waarborgen van een soepele gebruikersacceptatie en het bevorderen van kostenbesparing.',
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
image: {
src: NexthinkAppExp,
alt: 'Badge van de Nexthink Professional in het beheer van applicatie-ervaringen',
loading: 'lazy',
},
},
{
name: 'Gecertificeerd Nexthink Administrator',
description: 'Het behalen van de Nexthink Platform Administration-certificering toont aan dat men bedreven is in het configureren en aanpassen van het Nexthink-platform om te voldoen aan de behoeften van de organisatie.',
linkUrl: 'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
image: {
src: NexthinkAdministrator,
alt: 'Nexthink Administrator-badge',
loading: 'lazy',
},
},
{
name: 'Gecertificeerd Nexthink Associate',
description: 'Het behalen van de Nexthink Infinity Fundamentals-certificering bevestigt je begrip van het Nexthink Infinity-platform en de rol ervan bij het verbeteren van de digitale werknemerservaring.',
linkUrl: 'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
image: {
src: NexthinkAssociate,
alt: 'Nexthink Associate-badge',
loading: 'lazy',
},
},
{
name: 'Teams Administrator Associate',
description: 'Het behalen van de Teams Administrator Associate-certificering toont je vermogen aan om Microsoft Teams te plannen, implementeren, configureren en beheren, zodat efficiënte samenwerking en communicatie binnen een Microsoft 365-omgeving mogelijk worden gemaakt.',
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: 'Modern Desktop Administrator Associate',
description: 'Het behalen van de Modern Desktop Administrator Associate-certificering toont aan dat men bedreven is in het implementeren, configureren, beveiligen, beheren en monitoren van apparaten en clientapplicaties binnen een bedrijfsomgeving.',
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: 'Gecertificeerd Entry-Level Python Programmeur',
description: 'Het behalen van de PCEP™-certificering toont aan dat men bedreven is in de fundamentele concepten van Python-programmeren, waaronder datatypes, control flow, gegevensverzamelingen, functies en foutafhandeling.',
linkUrl: 'https://pythoninstitute.org/pcep',
image: {
src: pcep,
alt: 'PCEP™ Gecertificeerd Entry-Level Python Programmeur-badge',
loading: 'lazy',
},
},
{
name: 'Microsoft 365 Fundamentals',
description: 'Het behalen van de Microsoft 365 Certified: Fundamentals-certificering toont fundamentele kennis aan van cloudgebaseerde oplossingen, waaronder productiviteit, samenwerking, beveiliging, naleving en Microsoft 365-diensten.',
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: 'Azure Fundamentals',
description: 'Het behalen van de Microsoft Certified: Azure Fundamentals-certificering toont fundamentele kennis aan van cloudconcepten, kern Azure-diensten en de beheer- en governancefuncties en -tools van Azure.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/certifications/azure-fundamentals/?practice-assessment-type=certification',
image: {
src: MicrosoftFundamentals,
alt: 'Azure Fundamentals-badge',
loading: 'lazy',
},
},
]}
/>
<Testimonials
id="Certificeringen"
title="Certificeringen"
subtitle="Waar kennis op erkenning stuit"
testimonials={[
{
name: 'Gecertificeerde Nexthink Professional',
issueDate: 'Datum van afgifte: 01-2025',
description:
'Het behalen van de Nexthink Certified Application Experience Management-certificering bevestigt de expertise in het optimaliseren van applicatieprestaties, het zorgen voor een naadloze gebruikersacceptatie en het bevorderen van kostenefficiëntie.',
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',
},
},
{
name: 'Gecertificeerde Nexthink-beheerder',
issueDate: 'Datum van afgifte: 11-2024',
description:
'Het behalen van de Nexthink Platform Administration-certificering toont aan dat men bekwaam is in het configureren en aanpassen van het Nexthink-platform om aan de behoeften van de organisatie te voldoen.',
linkUrl:
'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
image: {
src: NexthinkAdministrator,
alt: 'Nexthink Administrator badge',
loading: 'lazy',
},
},
{
name: 'Gecertificeerde Nexthink Associate',
issueDate: 'Datum van afgifte: 11-2024',
description:
'Het behalen van de Nexthink Infinity Fundamentals-certificering bevestigt uw begrip van het Nexthink Infinity-platform en de rol ervan bij het verbeteren van de digitale werknemerservaring.',
linkUrl:
'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
image: {
src: NexthinkAssociate,
alt: 'Nexthink Associate badge',
loading: 'lazy',
},
},
{
name: 'Gecertificeerde beginnende Python-programmeur',
issueDate: 'Datum van afgifte: 11-2023',
description:
'Het behalen van de PCEP™-certificering toont aan dat men bedreven is in de fundamentele concepten van Python-programmering, waaronder datatypes, controleflow, gegevensverzamelingen, functies en foutafhandeling.',
linkUrl: 'https://pythoninstitute.org/pcep',
image: {
src: pcep,
alt: 'PCEP™ Badge voor gecertificeerde beginnende Python-programmeur',
loading: 'lazy',
},
},
{
name: 'Moderne Desktopbeheerder Associate',
issueDate: 'Datum van afgifte: 06-2023',
description:
'Het behalen van de Modern Desktop Administrator Associate-certificering toont aan dat men bedreven is in het implementeren, configureren, beveiligen, beheren en monitoren van apparaten en clientapplicaties binnen een bedrijfsomgeving.',
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 Basisprincipes',
issueDate: 'Datum van afgifte: 05-2023',
description:
'Het behalen van de Microsoft 365 Certified: Fundamentals-certificering toont fundamentele kennis van cloudgebaseerde oplossingen, waaronder productiviteit, samenwerking, beveiliging, compliance en Microsoft 365-diensten.',
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: 'Teamsbeheerder Associate',
issueDate: 'Datum van afgifte: 06-2021',
description:
'Het behalen van de Teams Administrator Associate-certificering toont aan dat u in staat bent om Microsoft Teams te plannen, implementeren, configureren en beheren om efficiënte samenwerking en communicatie binnen een Microsoft 365-omgeving te faciliteren.',
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 Basisprincipes',
issueDate: 'Datum van afgifte: 01-2020',
description:
'Het behalen van de Microsoft Certified: Azure Fundamentals-certificering toont fundamentele kennis van cloudconcepten, kern-Azure-diensten en Azure-beheer- en governancefuncties en -hulpmiddelen.',
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 ************** -->
<Features3

1
src/types.d.ts vendored
View File

@@ -158,6 +158,7 @@ export interface Testimonial {
testimonial?: string;
name?: string;
description?: string;
issueDate?: string;
image?: string | unknown;
linkUrl?: string;
}