29 lines
693 B
TypeScript
29 lines
693 B
TypeScript
// 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;
|