Add english CV

This commit is contained in:
2024-07-10 09:36:20 +02:00
parent bd32a80d20
commit 2404c8cbd2
3 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@@ -4,10 +4,11 @@ import { useTranslation } from 'react-i18next';
function CV(){
const { t } = useTranslation();
const cvPath = t('cv.path');
return (
<div className="max-w-4xl mx-auto mt-16 flex justify-center items-center flex-col gap-1 mb-4">
<p className="text-2xl md:text-4xl font-bold text-center text-gray-800 dark:text-gray-200">{t('cv.title')}</p>
<iframe src="/CV%20Félix%20MARQUET.pdf" className="w-full md:w-3/4 h-64 md:h-96 lg:h-screen mt-3" title="CV Félix MARQUET"></iframe>
<iframe src={cvPath} className="w-full md:w-3/4 h-64 md:h-96 lg:h-screen mt-3" title="CV Félix MARQUET"></iframe>
</div>
);
}

View File

@@ -18,6 +18,7 @@ i18n
"projects.MercuryCloud.description": "Projet d'herbergeur de serveur de jeu et VPS. Poste de support technique, administrateur des service VPS, Game et web.",
"projects.Projet C++ - ISEN CIR 2.description": "Projet de fin de 4e semestre à l'ISEN Nantes. Création d'un jeu de type Tower Defense en C++ avec la librairie QT6.",
"cv.title": "Mon CV",
"cv.path": "/CV%20Félix%20MARQUET.pdf",
"nav.about": "A propos de moi",
"nav.projects": "Mes projets",
"nav.cv": "Mon CV",
@@ -39,6 +40,7 @@ i18n
"nav.about": "About me",
"nav.projects": "My projects",
"nav.cv": "My CV",
"cv.path": "/CV%20Félix%20MARQUET%20ENGLISH.pdf"
},
},
},