From ea0543c476d72f0ae6a323868cd50ef19f370bae Mon Sep 17 00:00:00 2001 From: FEARmeR Date: Sat, 20 May 2023 17:21:29 +0100 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D1=8B?= =?UTF-8?q?=20/Profiles=20=D0=B8=20/Projects?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 15 +++ .../LandingPages/Profile/AllProfiles.vue | 124 ++++++++++++++++++ .../LandingPages/Project/AllProjects.vue | 124 ++++++++++++++++++ 3 files changed, 263 insertions(+) create mode 100644 src/views/LandingPages/Profile/AllProfiles.vue create mode 100644 src/views/LandingPages/Project/AllProjects.vue diff --git a/src/router/index.js b/src/router/index.js index d935b72..cfda41a 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -28,6 +28,9 @@ import Profile from "../views/LandingPages/Profile/Profile.vue"; import TopSecretProject from "../views/LandingPages/Project/TopSecretProject.vue"; import BasicRegister from "../views/LandingPages/SignIn/BasicRegister.vue"; import ForgotPassword from "../views/LandingPages/SignIn/ForgotPassword.vue"; +import Projects from "../views/LandingPages/Project/AllProjects.vue"; +import Profiles from "../views/LandingPages/Profile/AllProfiles.vue"; + const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), @@ -44,6 +47,12 @@ const router = createRouter({ component: Project }, + { + path: '/projects', + name: 'projects', + component: Projects + }, + { path: '/TopSecret', name: 'topsecretproject', @@ -56,6 +65,12 @@ const router = createRouter({ component: Profile }, + { + path: '/profiles', + name: 'profiles', + component: Profiles + }, + { path: "/register", name: "register", diff --git a/src/views/LandingPages/Profile/AllProfiles.vue b/src/views/LandingPages/Profile/AllProfiles.vue new file mode 100644 index 0000000..453b7b0 --- /dev/null +++ b/src/views/LandingPages/Profile/AllProfiles.vue @@ -0,0 +1,124 @@ + + + + + + \ No newline at end of file diff --git a/src/views/LandingPages/Project/AllProjects.vue b/src/views/LandingPages/Project/AllProjects.vue new file mode 100644 index 0000000..a6c6dc5 --- /dev/null +++ b/src/views/LandingPages/Project/AllProjects.vue @@ -0,0 +1,124 @@ + + + + + + \ No newline at end of file