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
+29
View File
@@ -0,0 +1,29 @@
// src/i18n/locales/de/pages/home/hero.ts
export const hero = {
title: 'SOFTWARE ENGINEER',
name: 'DAMJAN SAVIĆ',
cta: 'KONTAKT AUFNEHMEN',
image: {
alt: 'Portrait von Damjan Savić'
},
social: {
getInTouch: 'Kontaktieren Sie mich',
linkedin: {
title: 'Besuchen Sie mein LinkedIn Profil'
},
github: {
title: 'Besuchen Sie mein GitHub Profil'
},
email: {
title: 'Senden Sie mir eine E-Mail'
}
},
navigation: {
experience: 'ERFAHRUNG',
skills: 'FÄHIGKEITEN',
projects: 'PROJEKTE',
about: 'ÜBER MICH'
}
} as const;
export type HeroTranslations = typeof hero;