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