From 08b816f3fdb8889cc6017b89418ad7091118c18d Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Mon, 17 Feb 2020 16:13:48 +0100 Subject: [PATCH] Add sidebar --- client/src/components/icons/DefaultAvatar.vue | 63 ++++++++++++ .../src/components/profile/ProfileSidebar.vue | 97 +++++++++++++++++++ .../src/components/profile/ProfileWidget.vue | 44 +++++++++ client/src/layouts/DefaultLayout.vue | 5 +- 4 files changed, 208 insertions(+), 1 deletion(-) create mode 100644 client/src/components/icons/DefaultAvatar.vue create mode 100644 client/src/components/profile/ProfileSidebar.vue create mode 100644 client/src/components/profile/ProfileWidget.vue diff --git a/client/src/components/icons/DefaultAvatar.vue b/client/src/components/icons/DefaultAvatar.vue new file mode 100644 index 00000000..fe38c777 --- /dev/null +++ b/client/src/components/icons/DefaultAvatar.vue @@ -0,0 +1,63 @@ + + + diff --git a/client/src/components/profile/ProfileSidebar.vue b/client/src/components/profile/ProfileSidebar.vue new file mode 100644 index 00000000..db7dfc1e --- /dev/null +++ b/client/src/components/profile/ProfileSidebar.vue @@ -0,0 +1,97 @@ + + + + + diff --git a/client/src/components/profile/ProfileWidget.vue b/client/src/components/profile/ProfileWidget.vue new file mode 100644 index 00000000..93e8c55a --- /dev/null +++ b/client/src/components/profile/ProfileWidget.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/client/src/layouts/DefaultLayout.vue b/client/src/layouts/DefaultLayout.vue index b29dabc7..33ca3f48 100644 --- a/client/src/layouts/DefaultLayout.vue +++ b/client/src/layouts/DefaultLayout.vue @@ -1,5 +1,6 @@