First Commit - Portfolio Page

This commit is contained in:
2025-02-10 00:55:39 +01:00
commit bba0e331a8
239 changed files with 33355 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
// src/i18n/locales/de/pages/home/skills.ts
export const skills = {
title: 'Fähigkeiten',
skills: [
{
name: 'ERP',
level: 90,
description: 'Enterprise Resource Planning'
},
{
name: 'Datenbank',
level: 85,
description: 'Datenbankentwicklung und -administration'
},
{
name: 'E-Commerce',
level: 95,
description: 'Online-Handel und Plattformen'
},
{
name: 'Python',
level: 80,
description: 'Programmiersprache Python'
},
{
name: 'React',
level: 75,
description: 'Frontend-Entwicklung mit React'
},
{
name: 'Server',
level: 70,
description: 'Server-Administration'
}
],
aria: {
skillLevel: 'Fähigkeitsniveau',
selectSkill: 'Fähigkeit auswählen'
}
} as const;
export type SkillsTranslations = typeof skills;