mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
New education feature
This commit is contained in:
@@ -20,6 +20,11 @@
|
|||||||
"title": "Knowledge and Skills",
|
"title": "Knowledge and Skills",
|
||||||
"desc": "As part of my projects, I have to master a lot of different fields, like website creation, data analysis, artificial intelligence, or software creation.",
|
"desc": "As part of my projects, I have to master a lot of different fields, like website creation, data analysis, artificial intelligence, or software creation.",
|
||||||
"buttonText": "More about skills"
|
"buttonText": "More about skills"
|
||||||
|
},
|
||||||
|
"education":{
|
||||||
|
"title": "Education and certifications",
|
||||||
|
"desc": "I always enjoys learning and discovering new things and concepts. School gave me a lot of precious knowledge which is often useful in my works.",
|
||||||
|
"buttonText": "More about education"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"projects":{
|
"projects":{
|
||||||
|
|||||||
@@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
import projectsSvg from '@/assets/svg/projets.svg';
|
import projectsSvg from '@/assets/svg/projets.svg';
|
||||||
import skillsSvg from '@/assets/svg/skills.svg'
|
import skillsSvg from '@/assets/svg/skills.svg'
|
||||||
|
import educationSvg from '@/assets/svg/education.svg'
|
||||||
|
|
||||||
const features = [{
|
const features = [{
|
||||||
title: i18n.t("home.features.projects.title"),
|
title: i18n.t("home.features.projects.title"),
|
||||||
@@ -31,6 +32,12 @@
|
|||||||
buttonText: i18n.t("home.features.skills.buttonText"),
|
buttonText: i18n.t("home.features.skills.buttonText"),
|
||||||
picture: skillsSvg,
|
picture: skillsSvg,
|
||||||
link: "skills"
|
link: "skills"
|
||||||
|
},{
|
||||||
|
title: i18n.t("home.features.education.title"),
|
||||||
|
desc: i18n.t("home.features.education.desc"),
|
||||||
|
buttonText: i18n.t("home.features.education.buttonText"),
|
||||||
|
picture: educationSvg,
|
||||||
|
link: "education"
|
||||||
}];
|
}];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user