-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from Team-inglo/feat/IGW-48/72
Feat/IGW-48/72 - 유저 타입별 nav bar 분기
- Loading branch information
Showing
9 changed files
with
169 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import HomeIcon from '@/assets/icons/HomeIcon.svg?react'; | ||
import SearchIcon from '@/assets/icons/NavSearchIcon.svg?react'; | ||
import DocumentsIcon from '@/assets/icons/DocumentsIcon.svg?react'; | ||
import ProfileIcon from '@/assets/icons/ProfileIcon.svg?react'; | ||
|
||
export const userRoutes = [ | ||
{ | ||
path: '/', | ||
svg: HomeIcon, | ||
}, | ||
{ | ||
path: '/search', | ||
svg: SearchIcon, | ||
}, | ||
{ | ||
path: '/application', | ||
svg: DocumentsIcon, | ||
}, | ||
{ | ||
path: '/profile', | ||
svg: ProfileIcon, | ||
}, | ||
]; | ||
|
||
export const employerRoutes = [ | ||
{ | ||
path: '/', | ||
svg: HomeIcon, | ||
}, | ||
{ | ||
path: '/search', | ||
svg: SearchIcon, | ||
}, | ||
{ | ||
path: '/employer/post', | ||
svg: DocumentsIcon, | ||
}, | ||
{ | ||
path: '/employer/profile', | ||
svg: ProfileIcon, | ||
}, | ||
]; | ||
|
||
export const guestRoutes = [ | ||
{ | ||
path: '/', | ||
svg: HomeIcon, | ||
}, | ||
{ | ||
path: '/search', | ||
svg: SearchIcon, | ||
}, | ||
{ | ||
path: '/signin', | ||
svg: DocumentsIcon, | ||
}, | ||
{ | ||
path: '/signin', | ||
svg: ProfileIcon, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.