diff --git a/src/config/path.config.ts b/src/config/path.config.ts index 266fb467..d1afa84f 100644 --- a/src/config/path.config.ts +++ b/src/config/path.config.ts @@ -6,7 +6,7 @@ const APP_PATHS = { RESET_PASSWORD: '/reset-password', JOBS: '/jobs', MANAGE_JOBS: '/jobs/manage', - CONTACT_US: '', + CONTACT_US: 'mailto:vineetagarwal.now@gmail.com', TESTIMONIALS: '#testimonials', FAQS: '#faq', VERIFY_EMAIL: '/verify-email', diff --git a/src/lib/constant/app.constant.ts b/src/lib/constant/app.constant.ts index 224992d2..0e25f152 100644 --- a/src/lib/constant/app.constant.ts +++ b/src/lib/constant/app.constant.ts @@ -12,12 +12,12 @@ export const GITHUB_REPO = 'https://github.com/code100x/job-board'; export const nonUserNavbar = [ { id: 1, label: 'Explore jobs', path: APP_PATHS.JOBS }, - { id: 2, label: 'Contact us', path: APP_PATHS.TESTIMONIALS }, + { id: 2, label: 'Contact us', path: APP_PATHS.CONTACT_US }, ]; export const userNavbar = [ { id: 1, label: 'Explore jobs', path: APP_PATHS.JOBS }, - { id: 2, label: 'Contact us', path: APP_PATHS.TESTIMONIALS }, + { id: 2, label: 'Contact us', path: APP_PATHS.CONTACT_US }, ]; export const adminNavbar = [ { id: 1, label: 'Explore jobs', path: APP_PATHS.JOBS },