refactor: rename cv to resume
This commit is contained in:
parent
fc057bca36
commit
fb59965067
4 changed files with 6 additions and 112 deletions
|
@ -1,81 +0,0 @@
|
||||||
import React from 'react'
|
|
||||||
|
|
||||||
import style from './Cv.module.css'
|
|
||||||
|
|
||||||
function Cv ({
|
|
||||||
competencies,
|
|
||||||
education,
|
|
||||||
certifications,
|
|
||||||
languages,
|
|
||||||
experience
|
|
||||||
}) {
|
|
||||||
return (
|
|
||||||
<div className={style.cv}>
|
|
||||||
<div>
|
|
||||||
<h2>Core competencies</h2>
|
|
||||||
<ul>
|
|
||||||
{competencies.sort().map((c, i) => (
|
|
||||||
<li key={i}>{c}</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>Certifications</h2>
|
|
||||||
<ul>
|
|
||||||
{certifications.sort().map((c, i) => (
|
|
||||||
<li key={i}>{c}</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>Languages</h2>
|
|
||||||
<ul>
|
|
||||||
{languages.sort().map((c, i) => (
|
|
||||||
<li key={i}>
|
|
||||||
{c.name} - {c.proficiency}
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>Education history</h2>
|
|
||||||
<p>{education}</p>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h2>Professional experience</h2>
|
|
||||||
|
|
||||||
{experience.map((exp, i) => (
|
|
||||||
<CVWorkExperience
|
|
||||||
key={i}
|
|
||||||
employer={exp.employer}
|
|
||||||
position={exp.position}
|
|
||||||
start={exp.start}
|
|
||||||
end={exp.end}
|
|
||||||
>
|
|
||||||
{exp.desc}
|
|
||||||
</CVWorkExperience>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Cv
|
|
||||||
|
|
||||||
function CVWorkExperience ({ position, employer, start, end, children }) {
|
|
||||||
return (
|
|
||||||
<div className={style['work-experience']}>
|
|
||||||
<div>
|
|
||||||
<h3>
|
|
||||||
{position}
|
|
||||||
<br />
|
|
||||||
<small>{employer}</small>
|
|
||||||
</h3>
|
|
||||||
<small>
|
|
||||||
<time>{start}</time> - <time>{end}</time>
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
data-test='children'
|
|
||||||
dangerouslySetInnerHTML={{ __html: children }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
.cv {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
gap: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cv > div:first-child {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cv > div:last-child {
|
|
||||||
flex: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cv .work-experience >div:first-child {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.cv {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,8 +1,8 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import style from './Cv.module.css'
|
import style from './Resume.module.css'
|
||||||
|
|
||||||
function Cv ({
|
function Resume ({
|
||||||
competencies,
|
competencies,
|
||||||
education,
|
education,
|
||||||
certifications,
|
certifications,
|
||||||
|
@ -42,7 +42,7 @@ function Cv ({
|
||||||
<h2>Professional experience</h2>
|
<h2>Professional experience</h2>
|
||||||
|
|
||||||
{experience.map((exp, i) => (
|
{experience.map((exp, i) => (
|
||||||
<CVWorkExperience
|
<WorkExperience
|
||||||
key={i}
|
key={i}
|
||||||
employer={exp.employer}
|
employer={exp.employer}
|
||||||
position={exp.position}
|
position={exp.position}
|
||||||
|
@ -50,16 +50,16 @@ function Cv ({
|
||||||
end={exp.end}
|
end={exp.end}
|
||||||
>
|
>
|
||||||
{exp.desc}
|
{exp.desc}
|
||||||
</CVWorkExperience>
|
</WorkExperience>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Cv
|
export default Resume
|
||||||
|
|
||||||
function CVWorkExperience ({ position, employer, start, end, children }) {
|
function WorkExperience ({ position, employer, start, end, children }) {
|
||||||
return (
|
return (
|
||||||
<div className={style['work-experience']}>
|
<div className={style['work-experience']}>
|
||||||
<div>
|
<div>
|
Loading…
Add table
Reference in a new issue