- Added category icons to the skill evaluation components for better visual representation. - Implemented URL parameter handling in SkillEvaluation to maintain selected category state across navigation. - Improved the HomePage layout with expandable skill categories and enhanced user interaction. - Updated skill data files to include icon properties for each category.
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"category": "Backend",
|
|
"icon": "server",
|
|
"skills": [
|
|
{
|
|
"id": "nodejs",
|
|
"name": "Node.js",
|
|
"description": "Runtime JavaScript côté serveur construit sur le moteur V8 de Chrome",
|
|
"links": [
|
|
"https://nodejs.org/",
|
|
"https://nodejs.org/en/docs/",
|
|
"https://github.com/nodejs/node"
|
|
]
|
|
},
|
|
{
|
|
"id": "python",
|
|
"name": "Python",
|
|
"description": "Langage de programmation interprété de haut niveau",
|
|
"links": [
|
|
"https://www.python.org/",
|
|
"https://docs.python.org/3/",
|
|
"https://github.com/python/cpython"
|
|
]
|
|
},
|
|
{
|
|
"id": "express",
|
|
"name": "Express.js",
|
|
"description": "Framework web rapide, non-opinionated et minimaliste pour Node.js",
|
|
"links": [
|
|
"https://expressjs.com/",
|
|
"https://expressjs.com/en/guide/routing.html",
|
|
"https://github.com/expressjs/express"
|
|
]
|
|
},
|
|
{
|
|
"id": "postgresql",
|
|
"name": "PostgreSQL",
|
|
"description": "Système de gestion de base de données relationnelle open source",
|
|
"links": [
|
|
"https://www.postgresql.org/",
|
|
"https://www.postgresql.org/docs/",
|
|
"https://github.com/postgres/postgres"
|
|
]
|
|
},
|
|
{
|
|
"id": "mongodb",
|
|
"name": "MongoDB",
|
|
"description": "Base de données NoSQL orientée document",
|
|
"links": [
|
|
"https://www.mongodb.com/",
|
|
"https://docs.mongodb.com/",
|
|
"https://github.com/mongodb/mongo"
|
|
]
|
|
},
|
|
{
|
|
"id": "redis",
|
|
"name": "Redis",
|
|
"description": "Structure de données en mémoire utilisée comme base de données, cache et broker de messages",
|
|
"links": [
|
|
"https://redis.io/",
|
|
"https://redis.io/documentation",
|
|
"https://github.com/redis/redis"
|
|
]
|
|
}
|
|
]
|
|
}
|