From fb59965067c3f0982cd28e6d16249384db14012b Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Sun, 13 Oct 2024 14:04:58 +0100 Subject: [PATCH] refactor: rename cv to resume --- src/components/Cv/Cv.jsx | 81 ------------------- src/components/Cv/Cv.module.css | 25 ------ .../{CV/CV.jsx => Resume/Resume.jsx} | 12 +-- .../Resume.module.css} | 0 4 files changed, 6 insertions(+), 112 deletions(-) delete mode 100644 src/components/Cv/Cv.jsx delete mode 100644 src/components/Cv/Cv.module.css rename src/components/{CV/CV.jsx => Resume/Resume.jsx} (87%) rename src/components/{CV/Cv.module.css => Resume/Resume.module.css} (100%) diff --git a/src/components/Cv/Cv.jsx b/src/components/Cv/Cv.jsx deleted file mode 100644 index de279fa..0000000 --- a/src/components/Cv/Cv.jsx +++ /dev/null @@ -1,81 +0,0 @@ -import React from 'react' - -import style from './Cv.module.css' - -function Cv ({ - competencies, - education, - certifications, - languages, - experience -}) { - return ( -
-
-

Core competencies

-
    - {competencies.sort().map((c, i) => ( -
  • {c}
  • - ))} -
- -

Certifications

-
    - {certifications.sort().map((c, i) => ( -
  • {c}
  • - ))} -
- -

Languages

-
    - {languages.sort().map((c, i) => ( -
  • - {c.name} - {c.proficiency} -
  • - ))} -
- -

Education history

-

{education}

-
-
-

Professional experience

- - {experience.map((exp, i) => ( - - {exp.desc} - - ))} -
-
- ) -} - -export default Cv - -function CVWorkExperience ({ position, employer, start, end, children }) { - return ( -
-
-

- {position} -
- {employer} -

- - - - -
-
-
- ) -} diff --git a/src/components/Cv/Cv.module.css b/src/components/Cv/Cv.module.css deleted file mode 100644 index aa23271..0000000 --- a/src/components/Cv/Cv.module.css +++ /dev/null @@ -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; - } -} \ No newline at end of file diff --git a/src/components/CV/CV.jsx b/src/components/Resume/Resume.jsx similarity index 87% rename from src/components/CV/CV.jsx rename to src/components/Resume/Resume.jsx index de279fa..1c4194d 100644 --- a/src/components/CV/CV.jsx +++ b/src/components/Resume/Resume.jsx @@ -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 ({

Professional experience

{experience.map((exp, i) => ( - {exp.desc} - + ))}
) } -export default Cv +export default Resume -function CVWorkExperience ({ position, employer, start, end, children }) { +function WorkExperience ({ position, employer, start, end, children }) { return (
diff --git a/src/components/CV/Cv.module.css b/src/components/Resume/Resume.module.css similarity index 100% rename from src/components/CV/Cv.module.css rename to src/components/Resume/Resume.module.css