This commit is contained in:
2024-06-20 11:25:31 +02:00
parent cdbd4ae407
commit 4789bc2aed
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@@ -21,3 +21,5 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea

View File

@@ -5,7 +5,7 @@ function CV(){
return (
<div className="max-w-4xl mx-auto mt-16 flex justify-center items-center flex-col gap-1">
<p className="text-2xl md:text-4xl font-bold text-center text-gray-800 dark:text-gray-200">Mon CV</p>
<iframe src="/CV%20Félix%20MARQUET.pdf" width="70%" height="940px"></iframe>
<iframe src="/CV%20Félix%20MARQUET.pdf" className="w-full md:w-3/4 h-64 md:h-96 lg:h-screen"></iframe>
</div>
);
}