diff --git a/index.html b/index.html index e87faa3..9b5caa2 100644 --- a/index.html +++ b/index.html @@ -29,6 +29,11 @@ href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet" /> + + diff --git a/src/assets/css/linkedmin.css b/src/assets/css/linkedmin.css index 9c81d37..03882b8 100644 --- a/src/assets/css/linkedmin.css +++ b/src/assets/css/linkedmin.css @@ -6,4 +6,6 @@ font-family: SpaceMono; src:url('./fonts/SpaceMono-Regular.ttf') format('truetype') ; } - +h1{ + font-family: 'PressStart2P'; +} diff --git a/src/assets/img/ultraviolet.jpg b/src/assets/img/ultraviolet.jpg new file mode 100644 index 0000000..3bd29cb Binary files /dev/null and b/src/assets/img/ultraviolet.jpg differ diff --git a/src/examples/navbars/NavbarDefault.vue b/src/examples/navbars/NavbarDefault.vue index a728fd5..e172a57 100644 --- a/src/examples/navbars/NavbarDefault.vue +++ b/src/examples/navbars/NavbarDefault.vue @@ -5,7 +5,7 @@ import { useWindowsWidth } from "../../assets/js/useWindowsWidth"; // images import ArrDark from "@/assets/img/down-arrow-dark.svg"; -import downArrow from "@/assets/img/down-arrow.svg"; + import DownArrWhite from "@/assets/img/down-arrow-white.svg"; const isAuthenticated = computed(() => !!sessionStorage.getItem('access_token')); // Computed property to check if the user is authenticated @@ -278,6 +278,22 @@ watch( + +
+ + + Мои проекты + + +
+ @@ -343,9 +359,23 @@ watch( Мой Профиль Рассказ о том, какой я классныйПросмотр + + + Редактирование + + Чтобы стать ещё более класснымСтраница добавления проекта @@ -376,11 +406,39 @@ watch( Мой профиль Рассказ о том, какой я классныйПросмотр + + + + Редактирование + + + + + Страница добавления проекта + @@ -401,4 +459,4 @@ watch( - + \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index b72a3dc..23e02c0 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -15,6 +15,7 @@ import ViewMyProfile from "../views/LandingPages/Profile/AdmireProfile.vue"; import EditMyProfile from "../views/LandingPages/Profile/EditProfile.vue"; import CreateProject from "../views/LandingPages/Project/AddProject.vue"; import EditProject from "../views/LandingPages/Project/EditProject.vue"; +import MyProjects from "../views/LandingPages/Project/MyProjects.vue"; const router = createRouter({ @@ -38,6 +39,12 @@ const router = createRouter({ component: Projects }, + { + path: '/myprojects', + name: 'myprojects', + component: MyProjects + }, + { path: '/CreateProject', name: 'createproject', diff --git a/src/views/LandingPages/Profile/AdmireProfile.vue b/src/views/LandingPages/Profile/AdmireProfile.vue index 8b9de44..cf90d1c 100644 --- a/src/views/LandingPages/Profile/AdmireProfile.vue +++ b/src/views/LandingPages/Profile/AdmireProfile.vue @@ -52,6 +52,7 @@ onMounted(async() => {

{{ profileData.username }}

{{ profileData.email }}

Имя: {{ profileData.name }}

+ Profile Image

Местоположение: {{ profileData.location }}

Краткое описание: {{ profileData.short_intro }}

Биография: {{ profileData.bio }}

diff --git a/src/views/LandingPages/Profile/AllProfiles.vue b/src/views/LandingPages/Profile/AllProfiles.vue index 453b7b0..3b370ad 100644 --- a/src/views/LandingPages/Profile/AllProfiles.vue +++ b/src/views/LandingPages/Profile/AllProfiles.vue @@ -2,6 +2,7 @@ import { onMounted, onUnmounted } from "vue"; import axios from 'axios'; import { ref } from "vue"; +import NavbarDefault from "../../../examples/navbars/NavbarDefault.vue"; const searchQuery = ref(''); @@ -29,7 +30,7 @@ onMounted(() => {