diff --git a/components.d.ts b/components.d.ts
index 78fb9df..2486606 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -14,5 +14,6 @@ declare module '@vue/runtime-core' {
RouterView: typeof import('vue-router')['RouterView']
SmallTag: typeof import('./src/components/SmallTag.vue')['default']
UserCard: typeof import('./src/components/UserCard.vue')['default']
+ UserLinksBox: typeof import('./src/components/common/UserLinksBox.vue')['default']
}
}
diff --git a/src/App.vue b/src/App.vue
index 7fcf065..517bd55 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,4 @@
-
@@ -54,6 +53,10 @@ async function login(event) {
}
}
+async function profile(event) {
+ router.push('profiles');
+}
+
\ No newline at end of file
diff --git a/src/views/User/Services.vue b/src/views/User/Services.vue
index f952018..9485eef 100644
--- a/src/views/User/Services.vue
+++ b/src/views/User/Services.vue
@@ -49,8 +49,6 @@