refactor: rename cv to resume

This commit is contained in:
Aaron Yarborough 2024-10-13 14:04:58 +01:00
parent fc057bca36
commit fb59965067
4 changed files with 6 additions and 112 deletions

View file

@ -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>
)
}

View file

@ -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;
}
}

View file

@ -1,8 +1,8 @@
import React from 'react'
import style from './Cv.module.css'
import style from './Resume.module.css'
function Cv ({
function Resume ({
competencies,
education,
certifications,
@ -42,7 +42,7 @@ function Cv ({
<h2>Professional experience</h2>
{experience.map((exp, i) => (
<CVWorkExperience
<WorkExperience
key={i}
employer={exp.employer}
position={exp.position}
@ -50,16 +50,16 @@ function Cv ({
end={exp.end}
>
{exp.desc}
</CVWorkExperience>
</WorkExperience>
))}
</div>
</div>
)
}
export default Cv
export default Resume
function CVWorkExperience ({ position, employer, start, end, children }) {
function WorkExperience ({ position, employer, start, end, children }) {
return (
<div className={style['work-experience']}>
<div>