Refactor Logo component and enhance translations for applied skills

- Updated the Logo component to improve accessibility and visual design, replacing SVG elements with structured HTML and CSS for better responsiveness and styling.
- Introduced a new translations interface for applied skills, adding detailed descriptions and links for various skills across multiple languages.
- Enhanced the about me page to include a new section for applied skills, integrating the updated translations and improving the overall user experience.
This commit is contained in:
2025-07-24 14:18:35 +02:00
parent 5bc2197182
commit 6e6bfb67b1
5 changed files with 1863 additions and 19 deletions

View File

@@ -86,6 +86,16 @@ export interface Translation {
};
}[];
};
appliedSkills: {
title: string;
subtitle: string;
items: {
name: string;
issueDate: string;
description: string;
linkUrl: string;
}[];
};
skills: {
title: string;
subtitle: string;
@@ -544,6 +554,33 @@ export const translations: Record<string, Translation> = {
},
],
},
appliedSkills: {
title: 'Applied Skills',
subtitle: 'Practical Expertise in Action',
items: [
{
name: 'Get started with identities and access using Microsoft Entra',
issueDate: 'Date Issued: 06-2025',
description:
'Earning this Microsoft Applied Skill demonstrates proficiency in managing identities and access using Microsoft Entra. This skill validates expertise in implementing identity solutions, managing user access, and securing organizational resources through Microsoft\'s identity and access management platform.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/entra-identities-access/',
},
{
name: 'Create and manage automated processes with Power Automate',
issueDate: 'Date Issued: 06-2025',
description:
'Earning this Microsoft Applied Skill demonstrates expertise in creating and managing automated workflows using Power Automate. This skill validates proficiency in designing business process automation, integrating with various data sources, and implementing efficient workflow solutions to streamline organizational operations.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/power-automate-processes/',
},
{
name: 'Create agents in Microsoft Copilot Studio',
issueDate: 'Date Issued: 06-2025',
description:
'Earning this Microsoft Applied Skill demonstrates proficiency in developing intelligent conversational agents using Microsoft Copilot Studio. This skill validates expertise in creating AI-powered chatbots, implementing natural language processing, and building interactive solutions that enhance user engagement and support.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/copilot-studio-agents/',
},
],
},
skills: {
title: 'Skills',
subtitle: 'Discover the proficiencies that allow me to bring imagination to life through design.',
@@ -1000,6 +1037,33 @@ export const translations: Record<string, Translation> = {
},
],
},
appliedSkills: {
title: 'Toegepaste Vaardigheden',
subtitle: 'Praktische Expertise in Actie',
items: [
{
name: 'Aan de slag met identiteiten en toegang met Microsoft Entra',
issueDate: 'Datum van afgifte: 06-2025',
description:
'Het behalen van deze Microsoft Applied Skill toont vaardigheid aan in het beheren van identiteiten en toegang met Microsoft Entra. Deze vaardigheid valideert expertise in het implementeren van identiteitsoplossingen, het beheren van gebruikers toegang en het beveiligen van organisatorische middelen via Microsoft\'s identiteits- en toegangsbeheerplatform.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/entra-identities-access/',
},
{
name: 'Geautomatiseerde processen maken en beheren met Power Automate',
issueDate: 'Datum van afgifte: 06-2025',
description:
'Het behalen van deze Microsoft Applied Skill toont expertise aan in het maken en beheren van geautomatiseerde workflows met Power Automate. Deze vaardigheid valideert bekwaamheid in het ontwerpen van bedrijfsprocesautomatisering, het integreren met verschillende gegevensbronnen en het implementeren van efficiënte workflow-oplossingen om organisatorische operaties te stroomlijnen.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/power-automate-processes/',
},
{
name: 'Agents maken in Microsoft Copilot Studio',
issueDate: 'Datum van afgifte: 06-2025',
description:
'Het behalen van deze Microsoft Applied Skill toont vaardigheid aan in het ontwikkelen van intelligente conversatie-agents met Microsoft Copilot Studio. Deze vaardigheid valideert expertise in het maken van AI-aangedreven chatbots, het implementeren van natuurlijke taalverwerking en het bouwen van interactieve oplossingen die gebruikersbetrokkenheid en ondersteuning verbeteren.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/copilot-studio-agents/',
},
],
},
skills: {
title: 'Vaardigheden',
subtitle:
@@ -1457,6 +1521,33 @@ export const translations: Record<string, Translation> = {
},
],
},
appliedSkills: {
title: 'Angewandte Fähigkeiten',
subtitle: 'Praktische Expertise in Aktion',
items: [
{
name: 'Erste Schritte mit Identitäten und Zugriff mit Microsoft Entra',
issueDate: 'Ausstellungsdatum: 06-2025',
description:
'Der Erwerb dieser Microsoft Applied Skill zeigt Kompetenz in der Verwaltung von Identitäten und Zugriff mit Microsoft Entra. Diese Fähigkeit validiert Expertise in der Implementierung von Identitätslösungen, der Verwaltung von Benutzerzugriff und der Sicherung organisatorischer Ressourcen über Microsofts Identitäts- und Zugriffsverwaltungsplattform.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/entra-identities-access/',
},
{
name: 'Automatisierte Prozesse mit Power Automate erstellen und verwalten',
issueDate: 'Ausstellungsdatum: 06-2025',
description:
'Der Erwerb dieser Microsoft Applied Skill zeigt Expertise in der Erstellung und Verwaltung automatisierter Workflows mit Power Automate. Diese Fähigkeit validiert Kompetenz im Design von Geschäftsprozessautomatisierung, der Integration mit verschiedenen Datenquellen und der Implementierung effizienter Workflow-Lösungen zur Optimierung organisatorischer Abläufe.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/power-automate-processes/',
},
{
name: 'Agents in Microsoft Copilot Studio erstellen',
issueDate: 'Ausstellungsdatum: 06-2025',
description:
'Der Erwerb dieser Microsoft Applied Skill zeigt Kompetenz in der Entwicklung intelligenter Konversations-Agents mit Microsoft Copilot Studio. Diese Fähigkeit validiert Expertise in der Erstellung KI-gestützter Chatbots, der Implementierung natürlicher Sprachverarbeitung und dem Aufbau interaktiver Lösungen, die Benutzerengagement und Support verbessern.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/copilot-studio-agents/',
},
],
},
skills: {
title: 'Fähigkeiten',
subtitle:
@@ -1914,6 +2005,33 @@ export const translations: Record<string, Translation> = {
},
],
},
appliedSkills: {
title: 'Compétences Appliquées',
subtitle: 'Expertise Pratique en Action',
items: [
{
name: 'Commencer avec les identités et l\'accès avec Microsoft Entra',
issueDate: 'Date de délivrance : 06-2025',
description:
'L\'obtention de cette Microsoft Applied Skill démontre la compétence dans la gestion des identités et de l\'accès avec Microsoft Entra. Cette compétence valide l\'expertise dans l\'implémentation de solutions d\'identité, la gestion de l\'accès utilisateur et la sécurisation des ressources organisationnelles via la plateforme de gestion d\'identité et d\'accès de Microsoft.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/entra-identities-access/',
},
{
name: 'Créer et gérer des processus automatisés avec Power Automate',
issueDate: 'Date de délivrance : 06-2025',
description:
'L\'obtention de cette Microsoft Applied Skill démontre l\'expertise dans la création et la gestion de workflows automatisés avec Power Automate. Cette compétence valide la maîtrise dans la conception de l\'automatisation des processus métier, l\'intégration avec diverses sources de données et l\'implémentation de solutions de workflow efficaces pour rationaliser les opérations organisationnelles.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/power-automate-processes/',
},
{
name: 'Créer des agents dans Microsoft Copilot Studio',
issueDate: 'Date de délivrance : 06-2025',
description:
'L\'obtention de cette Microsoft Applied Skill démontre la compétence dans le développement d\'agents conversationnels intelligents avec Microsoft Copilot Studio. Cette compétence valide l\'expertise dans la création de chatbots alimentés par l\'IA, l\'implémentation du traitement du langage naturel et la construction de solutions interactives qui améliorent l\'engagement et le support des utilisateurs.',
linkUrl: 'https://learn.microsoft.com/en-us/credentials/applied-skills/copilot-studio-agents/',
},
],
},
skills: {
title: 'Compétences',
subtitle: "Découvrez les compétences qui me permettent de donner vie à l'imagination par le design.",