From e658c93a806172c24d23496018bbd0f61a7f3151 Mon Sep 17 00:00:00 2001 From: LJ5O <75009579+LJ5O@users.noreply.github.com> Date: Tue, 29 Apr 2025 15:58:08 +0200 Subject: [PATCH] New education feature --- src/assets/localization/en/localization.json | 5 +++++ src/components/home/featuresDisplay.vue | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index 8b262d0..7051906 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -20,6 +20,11 @@ "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.", "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":{ diff --git a/src/components/home/featuresDisplay.vue b/src/components/home/featuresDisplay.vue index 8dec61b..e30f96d 100644 --- a/src/components/home/featuresDisplay.vue +++ b/src/components/home/featuresDisplay.vue @@ -18,6 +18,7 @@ import projectsSvg from '@/assets/svg/projets.svg'; import skillsSvg from '@/assets/svg/skills.svg' + import educationSvg from '@/assets/svg/education.svg' const features = [{ title: i18n.t("home.features.projects.title"), @@ -31,6 +32,12 @@ buttonText: i18n.t("home.features.skills.buttonText"), picture: skillsSvg, 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" }];