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
+28
View File
@@ -0,0 +1,28 @@
// src/i18n/locales/sr/pages/home/hero.ts
export const hero = {
title: 'SOFTWARE ENGINEER',
name: 'DAMJAN SAVIĆ',
cta: 'KONTAKTIRAJTE ME',
image: {
alt: 'Portret Damjana Savića'
},
social: {
getInTouch: 'Kontaktirajte me',
linkedin: {
title: 'Posetite moj LinkedIn profil'
},
github: {
title: 'Posetite moj GitHub profil'
},
email: {
title: 'Pošaljite mi e-mail'
}
},
navigation: {
experience: 'ISKUSTVO',
skills: 'VEŠTINE',
projects: 'PROJEKTI',
about: 'O MENI'
}
} as const;
export type HeroTranslations = typeof hero;