diff --git a/frontend/public/assets/images/avatars/paula_128.png b/frontend/public/assets/images/avatars/paula_128.png new file mode 100644 index 00000000..7cf0f49f Binary files /dev/null and b/frontend/public/assets/images/avatars/paula_128.png differ diff --git a/frontend/src/components/home/About.vue b/frontend/src/components/home/About.vue index 1726d727..70f78cc5 100644 --- a/frontend/src/components/home/About.vue +++ b/frontend/src/components/home/About.vue @@ -18,6 +18,7 @@ +

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 304bc025..cc216a63 100644 --- a/frontend/src/components/lib/UserAvatar.vue +++ b/frontend/src/components/lib/UserAvatar.vue @@ -64,6 +64,8 @@ image = 'sara_128.png'; } else if (this.initials === 'SB'){ image = 'balcisue_128.png'; + } else if (this.initials === 'PO'){ + image = 'paula_128.png'; } } else if (this.username) { image = 'user_128.png'; @@ -91,6 +93,8 @@ image = 'sara_128.png'; } else if (this.username === 'balcisue'){ image = 'balcisue_128.png'; + } else if (this.username === 'paula-ogata'){ + image = 'paula_128.png'; } } return img_dir + image