diff --git a/src/app/constants/AssetsConstants.ts b/src/app/constants/AssetsConstants.ts index 4727ef3..adaebc7 100644 --- a/src/app/constants/AssetsConstants.ts +++ b/src/app/constants/AssetsConstants.ts @@ -13,4 +13,22 @@ static readonly TERAPORT_LOGO = '/assets/logos/teraport_gmbh_logo.jpg'; static readonly CV: 'assets/cv/andreas-dahm-cv.pdf'; + + //project images + static readonly EL_MUCHO_1 = '/assets/projects/el-mucho/1.jpg'; + static readonly EL_MUCHO_2 = '/assets/projects/el-mucho/2.jpg'; + static readonly EL_MUCHO_3 = '/assets/projects/el-mucho/3.jpg'; + static readonly EL_MUCHO_4 = '/assets/projects/el-mucho/4.jpg'; + + static readonly GAME_JAMS_1 = '/assets/projects/game-jams/1.png'; + static readonly GAME_JAMS_2 = '/assets/projects/game-jams/2.png'; + static readonly GAME_JAMS_3 = '/assets/projects/game-jams/3.png'; + + static readonly DIPLOMA_1 = '/assets/projects/diploma/1.jpg'; + static readonly DIPLOMA_2 = '/assets/projects/diploma/2.jpg'; + static readonly DIPLOMA_3 = '/assets/projects/diploma/3.jpg'; + static readonly DIPLOMA_4 = '/assets/projects/diploma/4.jpg'; + static readonly DIPLOMA_5 = '/assets/projects/diploma/5.jpg'; + static readonly DIPLOMA_6 = '/assets/projects/diploma/6.jpg'; + } diff --git a/src/app/pages/about/about.component.html b/src/app/pages/about/about.component.html index 8c816ba..8879f5a 100644 --- a/src/app/pages/about/about.component.html +++ b/src/app/pages/about/about.component.html @@ -47,7 +47,7 @@

{{ 'ABOUT.SECTION.PRIMARY' | translate }}

- @for (s of primarySkills; track primarySkills) { + @for (s of primarySkills; track s) { {{ s | translate }} } @@ -56,7 +56,7 @@

{{ 'ABOUT.SECTION.TOOLSET' | translate }}

- @for (t of toolset; track toolset) { + @for (t of toolset; track t) { {{ t | translate }} } @@ -67,7 +67,7 @@

{{ 'ABOUT.SECTION.EXPERIENCE' | translate }}

- @for (entry of xpKeys; track entry) { + @for (entry of xpKeys; track entry.key) {
@@ -108,7 +108,7 @@

{{ 'ABOUT.SECTION.PROJECTS' | translate }}

- @for (entry of projectKeys; track entry) { + @for (entry of projectKeys; track entry.key) {
{{ (entry.key + '.TITLE') | translate }} @@ -116,18 +116,21 @@
{{ (entry.key + '.DESCRIPTION') | translate }}
+ @if (entry.externalLink) { + + } -