feat: add Java skill and update skill levels

This commit is contained in:
Félix MARQUET
2025-10-07 18:06:30 +02:00
parent 63960f16c2
commit f786aa67a5
4 changed files with 15 additions and 2 deletions

View File

@@ -105,6 +105,10 @@
"React": {
"title": "React Development",
"description": "This portfolio, Modelec website, Studysen mobile application, professional projects."
},
"Java": {
"title": "Java Projects",
"description": "Introduction to the language, minecraft server plugins."
}
}
},

View File

@@ -105,6 +105,10 @@
"React": {
"title": "Développement React",
"description": "Ce portfolio, site web de Modelec, application mobile Studysen, projets professionnels"
},
"Java": {
"title": "Projets Java",
"description": "Initiation au langage, plugin Minecraft."
}
}
},

View File

@@ -46,7 +46,7 @@ const Felix = {
},
{
skillName: "Go",
skillLevel: 50,
skillLevel: 60,
},
{
skillName: "Docker",
@@ -59,6 +59,10 @@ const Felix = {
{
skillName: "React",
skillLevel: 80,
},
{
skillName: "Java",
skillLevel: 30,
}
],
experience: [

View File

@@ -3,7 +3,7 @@ import React, {JSX} from 'react';
import {
FaCuttlefish,
FaDocker,
FaHtml5,
FaHtml5, FaJava,
FaJs,
FaLinux,
FaPhp,
@@ -31,6 +31,7 @@ const iconMapping: IconMapping = {
"Docker": <FaDocker className={iconClassName} />,
"Rust": <FaRust className={iconClassName} />,
"React": <FaReact className={iconClassName} />,
"Java": <FaJava className={iconClassName} />,
};
interface SkillCardProps {