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}
-
-
- {start} - {end}
-
-
-
-
- )
-}
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