diff --git a/src/app/constants/AssetsConstants.ts b/src/app/constants/AssetsConstants.ts index 2b18bef..e0604aa 100644 --- a/src/app/constants/AssetsConstants.ts +++ b/src/app/constants/AssetsConstants.ts @@ -15,6 +15,10 @@ export class AssetsConstants { static readonly DIPLOMA = '/assets/projects/diploma/Dahm2010-Diplomarbeit.pdf'; //project images + static readonly PLAYGROUND_IMAGES = [ + '/assets/projects/playground/1.png' + ]; + static readonly EL_MUCHO_IMAGES = [ '/assets/projects/el-mucho/1.jpg', '/assets/projects/el-mucho/2.jpg', @@ -43,4 +47,4 @@ export class AssetsConstants { '/assets/projects/tribble-the-homeserver/3.png', '/assets/projects/tribble-the-homeserver/4.png' ]; -} \ No newline at end of file +} diff --git a/src/app/pages/projects/projects.component.ts b/src/app/pages/projects/projects.component.ts index 64de3bc..7731984 100644 --- a/src/app/pages/projects/projects.component.ts +++ b/src/app/pages/projects/projects.component.ts @@ -57,7 +57,7 @@ export class ProjectsComponent implements OnInit, OnDestroy { title: 'PROJECTS.PLAYGROUND.TITLE', shortDescription: 'PROJECTS.PLAYGROUND.SHORT_DESCRIPTION', introduction: 'PROJECTS.PLAYGROUND.INTRODUCTION', - images: [], + images: AssetsConstants.PLAYGROUND_IMAGES.map(url => ({ url, source: '' })), icon: 'web', assets: '', links: [{ name: 'PROJECTS.LINK_TO_PROJECT', url: 'https://andreas-dahm.eu' }], diff --git a/src/assets/projects/playground/1.png b/src/assets/projects/playground/1.png new file mode 100644 index 0000000..e584f62 Binary files /dev/null and b/src/assets/projects/playground/1.png differ