Added crucial converstations certificate
This commit is contained in:
BIN
public/images/certificates/CrucialConversations_FMD-logo.webp
Normal file
BIN
public/images/certificates/CrucialConversations_FMD-logo.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
@@ -19,40 +19,40 @@ const {
|
||||
{
|
||||
items && (
|
||||
<div
|
||||
class={twMerge(
|
||||
`grid mx-auto gap-8 md:gap-y-12 ${
|
||||
columns === 4
|
||||
? 'lg:grid-cols-4 md:grid-cols-3 sm:grid-cols-2'
|
||||
: columns === 3
|
||||
? 'lg:grid-cols-3 sm:grid-cols-2'
|
||||
: columns === 2
|
||||
? 'sm:grid-cols-2 '
|
||||
: ''
|
||||
}`,
|
||||
containerClass
|
||||
)}
|
||||
>
|
||||
class={twMerge(
|
||||
`grid mx-auto gap-8 md:gap-y-12 ${
|
||||
columns === 4
|
||||
? 'lg:grid-cols-4 md:grid-cols-3 sm:grid-cols-2'
|
||||
: columns === 3
|
||||
? 'lg:grid-cols-3 sm:grid-cols-2'
|
||||
: columns === 2
|
||||
? 'sm:grid-cols-2 '
|
||||
: ''
|
||||
} grid-flow-row auto-rows-fr`,
|
||||
containerClass
|
||||
)}
|
||||
>
|
||||
{items.map(({ title, description, icon, callToAction, classes: itemClasses = {} }) => (
|
||||
<div class="intersect-once motion-safe:md:opacity-0 motion-safe:md:intersect:animate-fade">
|
||||
<div class={twMerge('flex flex-row max-w-md backdrop-blur-sm bg-white/15 dark:bg-transparent p-3 rounded-md border border-gray-200 dark:border-gray-700 hover:bg-white/30 hover:backdrop-blur-md dark:hover:backdrop-blur-md transition-all duration-300 ease-in-out', panelClass, itemClasses?.panel)}>
|
||||
<div class="flex justify-center">
|
||||
{(icon || defaultIcon) && (
|
||||
<Icon
|
||||
name={icon || defaultIcon}
|
||||
class={twMerge('w-7 h-7 mr-2 rtl:mr-0 rtl:ml-2', defaultIconClass, itemClasses?.icon)}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
<div class="mt-0.5">
|
||||
{title && <h3 class={twMerge('text-xl font-bold', titleClass, itemClasses?.title)}>{title}</h3>}
|
||||
{description && (
|
||||
<p
|
||||
class={twMerge(`${title ? 'mt-3' : ''} text-muted`, descriptionClass, itemClasses?.description)}
|
||||
set:html={description}
|
||||
/>
|
||||
)}
|
||||
<div class="intersect-once motion-safe:md:opacity-0 motion-safe:md:intersect:animate-fade h-full">
|
||||
<div class={twMerge('flex flex-row max-w-md h-full min-h-[220px] backdrop-blur-sm bg-white/15 dark:bg-transparent p-3 rounded-md border border-gray-200 dark:border-gray-700 hover:bg-white/30 hover:backdrop-blur-md dark:hover:backdrop-blur-md transition-all duration-300 ease-in-out', panelClass, itemClasses?.panel)}>
|
||||
<div class="flex justify-center flex-shrink-0">
|
||||
{(icon || defaultIcon) && (
|
||||
<Icon
|
||||
name={icon || defaultIcon}
|
||||
class={twMerge('w-7 h-7 mr-2 rtl:mr-0 rtl:ml-2', defaultIconClass, itemClasses?.icon)}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
<div class="mt-0.5 flex flex-col overflow-hidden flex-grow">
|
||||
{title && <h3 class={twMerge('text-xl font-bold', titleClass, itemClasses?.title)}>{title}</h3>}
|
||||
{description && (
|
||||
<p
|
||||
class={twMerge(`${title ? 'mt-3' : ''} text-muted overflow-y-auto`, descriptionClass, itemClasses?.description)}
|
||||
set:html={description}
|
||||
/>
|
||||
)}
|
||||
{callToAction && (
|
||||
<div class={twMerge(`${title || description ? 'mt-3' : ''}`, actionClass, itemClasses?.actionClass)}>
|
||||
<div class={twMerge(`${title || description ? 'mt-3' : ''} mt-auto`, actionClass, itemClasses?.actionClass)}>
|
||||
<Button variant="link" {...callToAction} />
|
||||
</div>
|
||||
)}
|
||||
|
@@ -87,9 +87,8 @@ const {
|
||||
|
||||
<!-- Business Information (Dutch Law Requirements) -->
|
||||
<div class="text-sm text-gray-500 space-y-1">
|
||||
<p>Postbus 12345, 1000 AB Amsterdam, Nederland</p>
|
||||
<p>KVK: 87654321 | BTW: NL123456789B01</p>
|
||||
<p>contact@example.com | +31 6 12345678</p>
|
||||
<p>info@365devnet.eu | +31617441106</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@@ -183,17 +183,6 @@ const {
|
||||
<div class="items-center flex justify-between w-full md:w-auto">
|
||||
<div class="flex items-center space-x-4">
|
||||
{showToggleTheme && <ToggleTheme iconClass="w-6 h-6 md:w-5 md:h-5 md:inline-block" />}
|
||||
{
|
||||
showRssFeed && (
|
||||
<a
|
||||
class="text-muted dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5 inline-flex items-center"
|
||||
aria-label="RSS Feed"
|
||||
href={getAsset('/rss.xml')}
|
||||
>
|
||||
<Icon name="tabler:rss" class="w-5 h-5" />
|
||||
</a>
|
||||
)
|
||||
}
|
||||
<!-- Language Selector as Select Element -->
|
||||
<LanguageDropdown currentLang={currentPath.split('/')[1] || 'en'} />
|
||||
</div>
|
||||
|
@@ -346,7 +346,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Professional',
|
||||
issueDate: 'Date Issued: 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.',
|
||||
description: 'Earning the Nexthink Certified Application Experience Management certification validates the expertise in optimizing application performance, ensuring seamless user adoption, and driving cost efficiency. This certification demonstrates advanced knowledge in measuring and improving digital employee experience across enterprise environments.',
|
||||
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
|
||||
image: {
|
||||
src: '/images/certificates/CertifiedNexthinkProfessionalinApplicationExperienceManagement.webp',
|
||||
@@ -357,7 +357,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
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.',
|
||||
description: 'Earning the Nexthink Platform Administration certification demonstrates proficiency in configuring and customizing the Nexthink Platform to meet organizational needs. This certification validates skills in deploying, managing, and maintaining Nexthink environments to support IT operations and enhance end-user experience.',
|
||||
linkUrl: 'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAdministrator.webp',
|
||||
@@ -368,7 +368,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
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.',
|
||||
description: 'Earning the Nexthink Infinity Fundamentals certification validates your understanding of the Nexthink Infinity platform and its role in enhancing digital employee experience. This certification confirms knowledge of key platform components, data collection methods, and analytics capabilities for monitoring and improving workplace technology environments.',
|
||||
linkUrl: 'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAssociate.webp',
|
||||
@@ -376,6 +376,17 @@ export const translations: Record<string, Translation> = {
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Crucial Conversations',
|
||||
issueDate: 'Date Issued: 03-2024',
|
||||
description: 'Earning the Crucial Conversations certification demonstrates proficiency in effective dialogue techniques for high-stakes situations where opinions vary and emotions run strong, enabling transformation of disagreements into productive conversations that achieve better outcomes.',
|
||||
linkUrl: 'https://cruciallearning.com/courses/crucial-conversations-for-dialogue/',
|
||||
image: {
|
||||
src: '/images/certificates/CrucialConversations_FMD-logo.webp',
|
||||
alt: 'Crucial Conversations certification badge',
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Python Programmer (PCEP)',
|
||||
issueDate: 'Date Issued: 11-2023',
|
||||
@@ -702,7 +713,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified 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.',
|
||||
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. Deze certificering toont geavanceerde kennis aan in het meten en verbeteren van de digitale werknemerservaring in bedrijfsomgevingen.',
|
||||
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
|
||||
image: {
|
||||
src: '/images/certificates/CertifiedNexthinkProfessionalinApplicationExperienceManagement.webp',
|
||||
@@ -713,7 +724,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Administrator',
|
||||
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.',
|
||||
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. Deze certificering valideert vaardigheden in het implementeren, beheren en onderhouden van Nexthink-omgevingen ter ondersteuning van IT-operaties en het verbeteren van de eindgebruikerservaring.',
|
||||
linkUrl: 'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAdministrator.webp',
|
||||
@@ -724,7 +735,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified 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.',
|
||||
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. Deze certificering bevestigt kennis van belangrijke platformcomponenten, gegevensverzamelingsmethoden en analysemogelijkheden voor het monitoren en verbeteren van technologische werkomgevingen.',
|
||||
linkUrl: 'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAssociate.webp',
|
||||
@@ -732,6 +743,17 @@ export const translations: Record<string, Translation> = {
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Crucial Conversations',
|
||||
issueDate: 'Datum van afgifte: 03-2024',
|
||||
description: 'Het behalen van de Crucial Conversations-certificering toont vaardigheid aan in effectieve dialoogtechnieken voor situaties met hoge inzet waar meningen verschillen en emoties hoog oplopen, waardoor meningsverschillen kunnen worden omgezet in productieve gesprekken die betere resultaten opleveren.',
|
||||
linkUrl: 'https://cruciallearning.com/courses/crucial-conversations-for-dialogue/',
|
||||
image: {
|
||||
src: '/images/certificates/CrucialConversations_FMD-logo.webp',
|
||||
alt: 'Crucial Conversations certificeringsbadge',
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Python Programmer (PCEP)',
|
||||
issueDate: 'Datum van afgifte: 11-2023',
|
||||
@@ -1058,7 +1080,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Professional',
|
||||
issueDate: 'Ausstellungsdatum: 01-2025',
|
||||
description: 'Der Erwerb der Nexthink Certified Application Experience Management-Zertifizierung bestätigt die Expertise in der Optimierung der Anwendungsleistung, der Gewährleistung einer nahtlosen Benutzerakzeptanz und der Förderung der Kosteneffizienz.',
|
||||
description: 'Der Erwerb der Nexthink Certified Application Experience Management-Zertifizierung bestätigt die Expertise in der Optimierung der Anwendungsleistung, der Gewährleistung einer nahtlosen Benutzerakzeptanz und der Förderung der Kosteneffizienz. Diese Zertifizierung demonstriert fortgeschrittenes Wissen im Messen und Verbessern der digitalen Mitarbeitererfahrung in Unternehmensumgebungen.',
|
||||
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
|
||||
image: {
|
||||
src: '/images/certificates/CertifiedNexthinkProfessionalinApplicationExperienceManagement.webp',
|
||||
@@ -1069,7 +1091,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Administrator',
|
||||
issueDate: 'Ausstellungsdatum: 11-2024',
|
||||
description: 'Der Erwerb der Nexthink Platform Administration-Zertifizierung zeigt Kompetenz in der Konfiguration und Anpassung der Nexthink-Plattform zur Erfüllung organisatorischer Anforderungen.',
|
||||
description: 'Der Erwerb der Nexthink Platform Administration-Zertifizierung zeigt Kompetenz in der Konfiguration und Anpassung der Nexthink-Plattform zur Erfüllung organisatorischer Anforderungen. Diese Zertifizierung validiert Fähigkeiten bei der Bereitstellung, Verwaltung und Wartung von Nexthink-Umgebungen zur Unterstützung von IT-Betriebsabläufen und zur Verbesserung der Endbenutzererfahrung.',
|
||||
linkUrl: 'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAdministrator.webp',
|
||||
@@ -1080,7 +1102,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Associate',
|
||||
issueDate: 'Ausstellungsdatum: 11-2024',
|
||||
description: 'Der Erwerb der Nexthink Infinity Fundamentals-Zertifizierung bestätigt Ihr Verständnis der Nexthink Infinity-Plattform und ihrer Rolle bei der Verbesserung der digitalen Mitarbeitererfahrung.',
|
||||
description: 'Der Erwerb der Nexthink Infinity Fundamentals-Zertifizierung bestätigt Ihr Verständnis der Nexthink Infinity-Plattform und ihrer Rolle bei der Verbesserung der digitalen Mitarbeitererfahrung. Diese Zertifizierung bestätigt Kenntnisse über wichtige Plattformkomponenten, Datenerfassungsmethoden und Analysefunktionen zur Überwachung und Verbesserung von Technologieumgebungen am Arbeitsplatz.',
|
||||
linkUrl: 'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAssociate.webp',
|
||||
@@ -1088,6 +1110,17 @@ export const translations: Record<string, Translation> = {
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Crucial Conversations',
|
||||
issueDate: 'Ausstellungsdatum: 03-2024',
|
||||
description: 'Der Erwerb der Crucial Conversations-Zertifizierung demonstriert Kompetenz in effektiven Dialogtechniken für Situationen mit hohem Einsatz, in denen Meinungen variieren und Emotionen stark sind, wodurch Meinungsverschiedenheiten in produktive Gespräche umgewandelt werden können, die bessere Ergebnisse erzielen.',
|
||||
linkUrl: 'https://cruciallearning.com/courses/crucial-conversations-for-dialogue/',
|
||||
image: {
|
||||
src: '/images/certificates/CrucialConversations_FMD-logo.webp',
|
||||
alt: 'Crucial Conversations Zertifizierungsabzeichen',
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Python Programmer (PCEP)',
|
||||
issueDate: 'Ausstellungsdatum: 11-2023',
|
||||
@@ -1414,7 +1447,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Professional',
|
||||
issueDate: 'Date de délivrance : 01-2025',
|
||||
description: 'L\'obtention de la certification Nexthink Certified Application Experience Management valide l\'expertise dans l\'optimisation des performances des applications, assurant une adoption transparente par les utilisateurs et favorisant l\'efficacité des coûts.',
|
||||
description: 'L\'obtention de la certification Nexthink Certified Application Experience Management valide l\'expertise dans l\'optimisation des performances des applications, assurant une adoption transparente par les utilisateurs et favorisant l\'efficacité des coûts. Cette certification démontre une connaissance avancée dans la mesure et l\'amélioration de l\'expérience numérique des employés dans les environnements d\'entreprise.',
|
||||
linkUrl: 'https://certified.nexthink.com/babd1e3a-c593-4a81-90a2-6a002f43e692#acc.fUOog9dj',
|
||||
image: {
|
||||
src: '/images/certificates/CertifiedNexthinkProfessionalinApplicationExperienceManagement.webp',
|
||||
@@ -1425,7 +1458,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Administrator',
|
||||
issueDate: 'Date de délivrance : 11-2024',
|
||||
description: 'L\'obtention de la certification Nexthink Platform Administration démontre la compétence dans la configuration et la personnalisation de la plateforme Nexthink pour répondre aux besoins organisationnels.',
|
||||
description: 'L\'obtention de la certification Nexthink Platform Administration démontre la compétence dans la configuration et la personnalisation de la plateforme Nexthink pour répondre aux besoins organisationnels. Cette certification valide les compétences dans le déploiement, la gestion et la maintenance des environnements Nexthink pour soutenir les opérations IT et améliorer l\'expérience des utilisateurs finaux.',
|
||||
linkUrl: 'https://certified.nexthink.com/8bfc61f2-31b8-45d8-82e7-e4a1df2b915d#acc.7eo6pFxb',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAdministrator.webp',
|
||||
@@ -1436,7 +1469,7 @@ export const translations: Record<string, Translation> = {
|
||||
{
|
||||
name: 'Certified Nexthink Associate',
|
||||
issueDate: 'Date de délivrance : 11-2024',
|
||||
description: 'L\'obtention de la certification Nexthink Infinity Fundamentals valide votre compréhension de la plateforme Nexthink Infinity et de son rôle dans l\'amélioration de l\'expérience numérique des employés.',
|
||||
description: 'L\'obtention de la certification Nexthink Infinity Fundamentals valide votre compréhension de la plateforme Nexthink Infinity et de son rôle dans l\'amélioration de l\'expérience numérique des employés. Cette certification confirme la connaissance des composants clés de la plateforme, des méthodes de collecte de données et des capacités d\'analyse pour surveiller et améliorer les environnements technologiques en milieu de travail.',
|
||||
linkUrl: 'https://certified.nexthink.com/cf5e9e43-9d95-4dc6-bb95-0f7e0bada9b3#acc.YWDnxiaU',
|
||||
image: {
|
||||
src: '/images/certificates/NexthinkAssociate.webp',
|
||||
@@ -1444,6 +1477,17 @@ export const translations: Record<string, Translation> = {
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Crucial Conversations',
|
||||
issueDate: 'Date de délivrance : 03-2024',
|
||||
description: 'L\'obtention de la certification Crucial Conversations démontre la maîtrise des techniques de dialogue efficaces pour les situations à enjeux élevés où les opinions divergent et les émotions sont fortes, permettant de transformer les désaccords en conversations productives qui aboutissent à de meilleurs résultats.',
|
||||
linkUrl: 'https://cruciallearning.com/courses/crucial-conversations-for-dialogue/',
|
||||
image: {
|
||||
src: '/images/certificates/CrucialConversations_FMD-logo.webp',
|
||||
alt: 'Badge de certification Crucial Conversations',
|
||||
loading: 'lazy',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Python Programmer (PCEP)',
|
||||
issueDate: 'Date de délivrance : 11-2023',
|
||||
|
@@ -260,8 +260,8 @@ const tocItems = [
|
||||
If you have any questions about this Privacy Policy or our data practices, please contact us at:
|
||||
</p>
|
||||
<p>
|
||||
Email: contact@example.com<br>
|
||||
Postal Address: Postbus 12345, 1000 AB Amsterdam, Nederland
|
||||
Email: info@365devnet.eu<br>
|
||||
Phone: +31617441106
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -147,8 +147,8 @@ const tocItems = [
|
||||
If you have any questions about these terms and conditions, please contact us at:
|
||||
</p>
|
||||
<p>
|
||||
Email: contact@example.com<br>
|
||||
Postal Address: Postbus 12345, 1000 AB Amsterdam, Nederland
|
||||
Email: info@365devnet.eu<br>
|
||||
Phone: +31617441106
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user