diff --git a/web/src/components/AppNav.vue b/web/src/components/AppNav.vue index ae602f4..59f7265 100644 --- a/web/src/components/AppNav.vue +++ b/web/src/components/AppNav.vue @@ -157,7 +157,7 @@ const navLinks = computed(() => [ { to: '/apply', icon: PencilSquareIcon, label: 'Apply' }, { to: '/resumes', icon: DocumentTextIcon, label: 'Resumes' }, { to: '/interviews', icon: CalendarDaysIcon, label: 'Interviews' }, - { to: '/contacts', icon: UsersIcon, label: 'Contacts' }, + { to: '/messages', icon: UsersIcon, label: 'Messages' }, { to: '/references', icon: IdentificationIcon, label: 'References' }, { to: '/digest', icon: NewspaperIcon, label: 'Digest', badge: digestStore.entries.length || undefined }, diff --git a/web/src/router/index.ts b/web/src/router/index.ts index bd24830..bb98b35 100644 --- a/web/src/router/index.ts +++ b/web/src/router/index.ts @@ -12,7 +12,8 @@ export const router = createRouter({ { path: '/apply/:id', component: () => import('../views/ApplyWorkspaceView.vue') }, { path: '/resumes', component: () => import('../views/ResumesView.vue') }, { path: '/interviews', component: () => import('../views/InterviewsView.vue') }, - { path: '/contacts', component: () => import('../views/ContactsView.vue') }, + { path: '/messages', component: () => import('../views/MessagingView.vue') }, + { path: '/contacts', redirect: '/messages' }, { path: '/references', component: () => import('../views/ReferencesView.vue') }, { path: '/digest', component: () => import('../views/DigestView.vue') }, { path: '/prep', component: () => import('../views/InterviewPrepView.vue') },