diff --git a/frontend/public/assets/img/avatars/avatar-2.png b/frontend/public/assets/img/avatars/avatar-2.png new file mode 100644 index 0000000..9eb3ec9 Binary files /dev/null and b/frontend/public/assets/img/avatars/avatar-2.png differ diff --git a/frontend/public/assets/img/avatars/avatar-3.png b/frontend/public/assets/img/avatars/avatar-3.png new file mode 100644 index 0000000..a0dbc96 Binary files /dev/null and b/frontend/public/assets/img/avatars/avatar-3.png differ diff --git a/frontend/public/assets/img/avatars/avatar-4.png b/frontend/public/assets/img/avatars/avatar-4.png new file mode 100644 index 0000000..de75ef6 Binary files /dev/null and b/frontend/public/assets/img/avatars/avatar-4.png differ diff --git a/frontend/public/assets/img/avatars/avatar-5.png b/frontend/public/assets/img/avatars/avatar-5.png new file mode 100644 index 0000000..40d595e Binary files /dev/null and b/frontend/public/assets/img/avatars/avatar-5.png differ diff --git a/frontend/public/assets/img/avatars/avatar-6.png b/frontend/public/assets/img/avatars/avatar-6.png new file mode 100644 index 0000000..bc8577c Binary files /dev/null and b/frontend/public/assets/img/avatars/avatar-6.png differ diff --git a/frontend/public/assets/img/avatars/avatar.png b/frontend/public/assets/img/avatars/avatar.png new file mode 100644 index 0000000..894246c Binary files /dev/null and b/frontend/public/assets/img/avatars/avatar.png differ diff --git a/frontend/public/assets/img/photos/unsplash-1.jpg b/frontend/public/assets/img/photos/unsplash-1.jpg new file mode 100644 index 0000000..ccc3963 Binary files /dev/null and b/frontend/public/assets/img/photos/unsplash-1.jpg differ diff --git a/frontend/public/assets/img/photos/unsplash-2.jpg b/frontend/public/assets/img/photos/unsplash-2.jpg new file mode 100644 index 0000000..3a33349 Binary files /dev/null and b/frontend/public/assets/img/photos/unsplash-2.jpg differ diff --git a/frontend/public/assets/img/photos/unsplash-3.jpg b/frontend/public/assets/img/photos/unsplash-3.jpg new file mode 100644 index 0000000..bc287e5 Binary files /dev/null and b/frontend/public/assets/img/photos/unsplash-3.jpg differ diff --git a/frontend/src/components/BaseLayout.vue b/frontend/src/components/BaseLayout.vue index 2231b2e..2680ed5 100644 --- a/frontend/src/components/BaseLayout.vue +++ b/frontend/src/components/BaseLayout.vue @@ -18,36 +18,7 @@ @@ -64,12 +35,16 @@ import Footer from "@/components/Footer.vue"; import Sidebar from "@/components/Sidebar.vue"; import Notifications from "@/components/Notifications.vue"; import Messages from "@/components/Messages.vue"; +import Footer from "@/components/Footer.vue"; +import Sidebar from "@/components/Sidebar.vue"; +import UserDropdown from "@/components/UserDropdown.vue"; export default { name: 'BaseLayout', components: { - Footer, + UserDropdown, Sidebar, + Footer, Messages, Notifications, ...BIcons diff --git a/frontend/src/components/Messages.vue b/frontend/src/components/Messages.vue index 99e880b..52be31e 100644 --- a/frontend/src/components/Messages.vue +++ b/frontend/src/components/Messages.vue @@ -16,8 +16,8 @@
- + Vanessa Tucker
Vanessa Tucker
@@ -31,8 +31,8 @@
- + William Harris
+
+ + Add +
diff --git a/frontend/src/views/Profile.vue b/frontend/src/views/Profile.vue index 50ecade..3fec4eb 100644 --- a/frontend/src/views/Profile.vue +++ b/frontend/src/views/Profile.vue @@ -12,9 +12,9 @@
Profile Details
- + height="128"/>
{{ user.username }}
@@ -94,8 +94,8 @@
- + Vanessa Tucker
5m ago Vanessa Tucker started following Christina @@ -107,8 +107,8 @@
- + Charles Hall
30m ago Charles Hall posted something on Christina @@ -132,8 +132,8 @@
- + Christina Mason
1h ago Christina Mason posted a new blog
@@ -144,8 +144,8 @@
- + William Harris
3h ago William Harris posted two photos on Christina @@ -154,12 +154,12 @@
- + Unsplash
- + Unsplash
@@ -171,8 +171,8 @@
- + William Harris
1d ago William Harris started following Christina @@ -181,8 +181,8 @@
- + Christina Mason
@@ -196,8 +196,8 @@
- + Christina Mason
1d ago Christina Mason posted a new blog
@@ -207,8 +207,8 @@
- + Charles Hall
1d ago Charles Hall started following Christina @@ -223,7 +223,6 @@
-
diff --git a/frontend/src/views/Settings.vue b/frontend/src/views/Settings.vue index d143c7e..8784570 100644 --- a/frontend/src/views/Settings.vue +++ b/frontend/src/views/Settings.vue @@ -79,7 +79,7 @@
Charles Hall
diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 53448c3..0ffb60b 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -27,7 +27,6 @@ export default defineConfig({ + ' img-src \'self\' data:; ' + ' connect-src * data:', // TODO: change * to https://* for production (probably in nginx config not here) }, - }, proxy: { '^/api/': { target: "http://127.0.0.1:8000/", @@ -43,6 +42,13 @@ export default defineConfig({ }, '^/static/': { target: "http://127.0.0.1:8000/", + }, + '^/wiki/': { + target: "http://127.0.0.1:8080/", + rewrite: (path) => path.replace(/^\/wiki/, ''), + }, + '^/livereload/': { + target: "http://127.0.0.1:8080/", } }, test: {