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": { "React": {
"title": "React Development", "title": "React Development",
"description": "This portfolio, Modelec website, Studysen mobile application, professional projects." "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": { "React": {
"title": "Développement React", "title": "Développement React",
"description": "Ce portfolio, site web de Modelec, application mobile Studysen, projets professionnels" "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", skillName: "Go",
skillLevel: 50, skillLevel: 60,
}, },
{ {
skillName: "Docker", skillName: "Docker",
@@ -59,6 +59,10 @@ const Felix = {
{ {
skillName: "React", skillName: "React",
skillLevel: 80, skillLevel: 80,
},
{
skillName: "Java",
skillLevel: 30,
} }
], ],
experience: [ experience: [

View File

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