diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index b315a45..ac1c3cf 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -12,14 +12,14 @@ "contactButton": "Contact", "features": { "projects":{ - "title": "Let's overview some types of projects I'm often dealing with", + "title": "Always working on new and innovative things", "desc": "Be it for study, work or on my free time, I'm always working on something new. As I love to see how those lines of code can enhance daily life, or make Science moving forward, I strive to always imagine, create and maintain useful things.", "buttonText": "See all projects" }, - "ai":{ - "title": "Artificial Intelligence", - "desc": "How is it possible to...", - "buttonText": "IDK" + "skills":{ + "title": "Knowledge and Skills", + "desc": "As I have worked on various topics, I learned a lot about different technologies. As years and tasks are going by, I always strive to learn more and make a good use of my capacities.", + "buttonText": "More about skills" } } } diff --git a/src/components/home/featuresDisplay.vue b/src/components/home/featuresDisplay.vue index ab42fc4..14c8eb5 100644 --- a/src/components/home/featuresDisplay.vue +++ b/src/components/home/featuresDisplay.vue @@ -17,7 +17,7 @@ const i18n = useI18n(); import projectsSvg from '@/assets/svg/projets.svg'; - import aiSvg from '@/assets/svg/skills/AI.svg' + import skillsSvg from '@/assets/svg/skills.svg' const features = [{ title: i18n.t("home.features.projects.title"), @@ -26,10 +26,10 @@ picture: projectsSvg, link: "#" },{ - title: i18n.t("home.features.ai.title"), - desc: i18n.t("home.features.ai.desc"), - buttonText: i18n.t("home.features.ai.buttonText"), - picture: aiSvg, + title: i18n.t("home.features.skills.title"), + desc: i18n.t("home.features.skills.desc"), + buttonText: i18n.t("home.features.skills.buttonText"), + picture: skillsSvg, link: "#" }];