diff --git a/.vscode/settings.json b/.vscode/settings.json index b0c8b24..9652cd8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,9 @@ "cSpell.words": [ "Dirents", "Sitecore" - ] + ], + "files.autoSave": "off", + "standard.autoFixOnSave": true, + "prettier.enable": false, + "editor.defaultFormatter": "standard.vscode-standard" } \ No newline at end of file diff --git a/src/components/CV/CV.jsx b/src/components/CV/CV.jsx index 531ab47..61ac9fb 100644 --- a/src/components/CV/CV.jsx +++ b/src/components/CV/CV.jsx @@ -2,23 +2,37 @@ import React from 'react' import style from './CV.module.css' -function CV ({ competencies, education, certifications, languages, experience }) { +function CV ({ + competencies, + education, + certifications, + languages, + experience +}) { return (

Core competencies

Certifications

Languages

Education history

@@ -28,7 +42,15 @@ function CV ({ competencies, education, certifications, languages, experience })

Professional experience

{experience.map((exp, i) => ( - {exp.desc} + + {exp.desc} + ))}
@@ -50,7 +72,10 @@ function CVWorkExperience ({ position, employer, start, end, children }) { - -
+
) }