diff --git a/src/router/index.js b/src/router/index.js
index 51cb27e..c802d1d 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -24,6 +24,7 @@ import ElProgressBars from "../layouts/sections/elements/progress-bars/ProgressB
 import ElToggles from "../layouts/sections/elements/toggles/TogglesView.vue";
 import ElTypography from "../layouts/sections/elements/typography/TypographyView.vue";
 import Project from "../views/LandingPages/Project/Project.vue";
+import Profile from "../views/LandingPages/Profile/Profile.vue";
 
 
 const router = createRouter({
@@ -34,12 +35,19 @@ const router = createRouter({
       name: "presentation",
       component: PresentationView,
     },
+
     {
       path: '/project/:id',
       name: 'project',
       component: Project
     },
 
+    {
+      path: '/profile/:id',
+      name: 'profile',
+      component: Profile
+    },
+
     {
       path: "/pages/landing-pages/about-us",
       name: "about",
diff --git a/src/views/LandingPages/Profile/Profile.vue b/src/views/LandingPages/Profile/Profile.vue
new file mode 100644
index 0000000..bd4abc6
--- /dev/null
+++ b/src/views/LandingPages/Profile/Profile.vue
@@ -0,0 +1,43 @@
+
+
+
+
+    
+      
Профиль пользователя номер: {{ profileData.id }}
+      
{{ profileData.username }}
+        
{{ profileData.email }}
+         
+      
+    
 
+   
+
+
+
+
+  
\ No newline at end of file