create placeholder

This commit is contained in:
Kiran Surendran Pankan 2025-04-07 12:23:17 +05:30
parent 4ed9dcee71
commit 0ff5f053cd
3 changed files with 23 additions and 0 deletions

View File

@ -78,6 +78,12 @@ const handleLogout = () => {
<span class="text" :class="{ 'hidden': isCollapsed }">Jobs</span>
</router-link>
</li>
<li>
<router-link :to="{ name: 'post job' }" :class="{ 'active': activeSection === 'post job' }">
<span class="icon"></span>
<span class="text" :class="{ 'hidden': isCollapsed }">Post a Job</span>
</router-link>
</li>
<li>
<router-link :to="{ name: 'applications' }" :class="{ 'active': activeSection === 'applications' }">
<span class="icon">📝</span>

View File

@ -8,6 +8,7 @@ import SavedJobs from '../views/SavedJobs.vue';
import Profile from '../views/Profile.vue';
import Settings from '../views/Settings.vue';
import Login from '../views/Login.vue';
import CreateJob from '../views/CreateJob.vue';
const routes = [
{
@ -29,6 +30,11 @@ const routes = [
name: 'jobs',
component: Jobs
},
{
path: '/jobs/post',
name: 'post job',
component: CreateJob
},
{
path: '/applications',
name: 'applications',

11
src/views/CreateJob.vue Normal file
View File

@ -0,0 +1,11 @@
<script setup>
</script>
<template>
Post a new Job
</template>
<style lang="scss" scoped>
</style>