chore: fix case

This commit is contained in:
Aaron Yarborough 2024-10-13 13:44:45 +01:00
parent 088d03939c
commit fc057bca36
2 changed files with 106 additions and 0 deletions

81
src/components/Cv/Cv.jsx Normal file
View file

@ -0,0 +1,81 @@
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

@ -0,0 +1,25 @@
.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;
}
}