-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create header for cell job placement
- Loading branch information
Showing
5 changed files
with
74 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import React from 'react'; | ||
|
||
import MenuList from '@mui/material/MenuList'; | ||
import MenuItem from '@mui/material/MenuItem'; | ||
import Typography from '@mui/material/Typography'; | ||
import ListItemIcon from '@mui/material/ListItemIcon'; | ||
import Avatar from '@mui/material/Avatar'; | ||
|
||
import { Currency, BriefCase, Blog } from '@master-c8/icons'; | ||
import { COLORS } from '@master-c8/theme'; | ||
|
||
import Header from './Header'; | ||
|
||
const HeaderJob = () => { | ||
return ( | ||
<Header isLogged> | ||
<MenuList sx={{ display: 'flex' }}> | ||
<a | ||
style={{ textDecoration: 'none' }} | ||
href="https://platzi-master-c8.github.io/gethired-jobplacement-salaries-frontend/" | ||
> | ||
<MenuItem sx={{ flexDirection: 'column', gap: '5px' }}> | ||
<ListItemIcon> | ||
<Currency color="secondary" /> | ||
</ListItemIcon> | ||
<Typography color="secondary" sx={{ fontSize: '13px' }}> | ||
Salary Calculator | ||
</Typography> | ||
</MenuItem> | ||
</a> | ||
<a | ||
style={{ textDecoration: 'none' }} | ||
href="https://platzi-master-c8.github.io/gethired-jobplacement-ratings/" | ||
> | ||
<MenuItem sx={{ flexDirection: 'column', gap: '5px' }}> | ||
<ListItemIcon sx={{ color: '#000' }}> | ||
<Blog /> | ||
</ListItemIcon> | ||
<Typography color="text" sx={{ fontSize: '13px', color: '#000' }}> | ||
Raitings | ||
</Typography> | ||
</MenuItem> | ||
</a> | ||
<a | ||
style={{ textDecoration: 'none' }} | ||
href="https://platzi-master-c8.github.io/gethired-jobplacement-enterprise-Frontend/" | ||
> | ||
<MenuItem sx={{ flexDirection: 'column', gap: '5px' }}> | ||
<ListItemIcon sx={{ color: '#000' }}> | ||
<BriefCase /> | ||
</ListItemIcon> | ||
<Typography color="text" sx={{ fontSize: '13px', color: '#000' }}> | ||
Company | ||
</Typography> | ||
</MenuItem> | ||
</a> | ||
<MenuItem> | ||
<Avatar sx={{ bgcolor: COLORS.secondary }}>J</Avatar> | ||
</MenuItem> | ||
</MenuList> | ||
</Header> | ||
); | ||
}; | ||
|
||
export default HeaderJob; |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
export { default } from './Header'; | ||
export { default } from './Header'; | ||
export { default as HeaderJob } from './HeaderJob'; |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export { default as Logotype } from './Logotype'; | ||
export { default as Header } from './Header'; | ||
export { default as HeaderJob } from './Header/HeaderJob'; |