Added diploma as asset and extrended projects strcuture

This commit is contained in:
2026-01-01 12:03:10 +01:00
parent a08a11d249
commit 9771d7a38d
2 changed files with 19 additions and 4 deletions

View File

@@ -12,6 +12,9 @@ export interface Projects {
introduction: string,
images: string[],
icon: string,
assets: string[],
link: string,
bulletPoints: string[],
}
@Component({
@@ -40,7 +43,10 @@ export class ProjectsComponent {
shortDescription: 'PROJECTS.PLAYGROUND.SHORT_DESCRIPTION',
introduction: 'PROJECTS.PLAYGROUND.INTRODUCTION',
images: [],
icon: 'web'
icon: 'web',
assets: [],
link: 'https://andreas-dahm.eu',
bulletPoints: []
},
{
identifier: "elmucho",
@@ -48,7 +54,10 @@ export class ProjectsComponent {
shortDescription: 'PROJECTS.EL_MUCHO.SHORT_DESCRIPTION',
introduction: 'PROJECTS.EL_MUCHO.INTRODUCTION',
images: [AssetsConstants.EL_MUCHO_1, AssetsConstants.EL_MUCHO_2, AssetsConstants.EL_MUCHO_3, AssetsConstants.EL_MUCHO_4],
icon: 'sports_esports'
icon: 'sports_esports',
assets: [],
link: 'https://store.steampowered.com/app/1532640/El_Mucho/',
bulletPoints: []
},
{
identifier: "gamejams",
@@ -56,7 +65,10 @@ export class ProjectsComponent {
shortDescription: 'PROJECTS.GAME_JAMS.SHORT_DESCRIPTION',
introduction: 'PROJECTS.GAME_JAMS.INTRODUCTION',
images: [AssetsConstants.GAME_JAMS_1, AssetsConstants.GAME_JAMS_2, AssetsConstants.GAME_JAMS_3],
icon: 'videogame_asset'
icon: 'videogame_asset',
assets: [],
link: 'https://itch.io/c/6628860/lobos-collection',
bulletPoints: []
},
{
identifier: "diploma",
@@ -64,7 +76,10 @@ export class ProjectsComponent {
shortDescription: 'PROJECTS.DIPLOMA.SHORT_DESCRIPTION',
introduction: 'PROJECTS.DIPLOMA.INTRODUCTION',
images: [AssetsConstants.DIPLOMA_1, AssetsConstants.DIPLOMA_2, AssetsConstants.DIPLOMA_3, AssetsConstants.DIPLOMA_4, AssetsConstants.DIPLOMA_5, AssetsConstants.DIPLOMA_6],
icon: 'history_edu'
icon: 'history_edu',
assets: [],
link: 'https://www.th-bingen.de',
bulletPoints: []
}
]

Binary file not shown.