diff --git a/frontend/public/assets/images/avatars/jonaspk98_128.png b/frontend/public/assets/images/avatars/jonaspk98_128.png new file mode 100644 index 00000000..a93a55b0 Binary files /dev/null and b/frontend/public/assets/images/avatars/jonaspk98_128.png differ diff --git a/frontend/public/assets/images/avatars/lepujolh_128.png b/frontend/public/assets/images/avatars/lepujolh_128.png new file mode 100644 index 00000000..9790ed00 Binary files /dev/null and b/frontend/public/assets/images/avatars/lepujolh_128.png differ diff --git a/frontend/public/assets/images/avatars/stemllb_128.png b/frontend/public/assets/images/avatars/stemllb_128.png new file mode 100644 index 00000000..ac997ca0 Binary files /dev/null and b/frontend/public/assets/images/avatars/stemllb_128.png differ diff --git a/frontend/src/components/home/About.vue b/frontend/src/components/home/About.vue index b06d93de..3faddb10 100644 --- a/frontend/src/components/home/About.vue +++ b/frontend/src/components/home/About.vue @@ -19,6 +19,10 @@ + + + +

If you have questions or feedback please contact diff --git a/frontend/src/components/lib/UserAvatar.vue b/frontend/src/components/lib/UserAvatar.vue index cc216a63..27c03c18 100644 --- a/frontend/src/components/lib/UserAvatar.vue +++ b/frontend/src/components/lib/UserAvatar.vue @@ -66,6 +66,12 @@ image = 'balcisue_128.png'; } else if (this.initials === 'PO'){ image = 'paula_128.png'; + } else if (this.initials === 'HL'){ + image = 'lepujolh_128.png'; + } else if (this.initials === 'BS'){ + image = 'stemllb_128.png'; + } else if (this.initials === 'JK'){ + image = 'jonaspk98_128.png'; } } else if (this.username) { image = 'user_128.png'; @@ -95,6 +101,12 @@ image = 'balcisue_128.png'; } else if (this.username === 'paula-ogata'){ image = 'paula_128.png'; + } else if (this.username === 'lepujolh'){ + image = 'lepujolh_128.png'; + } else if (this.username === 'stemllb'){ + image = 'stemllb_128.png'; + } else if (this.username === 'jonaspk98'){ + image = 'jonaspk98_128.png'; } } return img_dir + image diff --git a/frontend/src/components/search/UserSearch.vue b/frontend/src/components/search/UserSearch.vue index 4ea02726..8e3004a1 100644 --- a/frontend/src/components/search/UserSearch.vue +++ b/frontend/src/components/search/UserSearch.vue @@ -64,6 +64,10 @@ export default { {"username": "SaraD-hub", "first_name": "Sara", "last_name": "De Angelis",}, {"username": "balcisue", "first_name": "Sükrü", "last_name": "Balci",}, {"username": "paula-ogata", "first_name": "Paula", "last_name": "Ogata",}, + {"username": "lepujolh", "first_name": "Helen", "last_name": "Leal",}, + {"username": "stemllb", "first_name": "Beatrice", "last_name": "Stemmer Mallol",}, + {"username": "jonaspk98", "first_name": "Jonas", "last_name": "Küttner",}, + ], } },