Edited some lines

This commit is contained in:
2025-03-22 01:08:47 +01:00
parent f29876eab7
commit 6a681e06a3
2 changed files with 10 additions and 10 deletions

View File

@@ -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"
}
}
}

View File

@@ -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: "#"
}];
</script>