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", "contactButton": "Contact",
"features": { "features": {
"projects":{ "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.", "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" "buttonText": "See all projects"
}, },
"ai":{ "skills":{
"title": "Artificial Intelligence", "title": "Knowledge and Skills",
"desc": "How is it possible to...", "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": "IDK" "buttonText": "More about skills"
} }
} }
} }

View File

@@ -17,7 +17,7 @@
const i18n = useI18n(); const i18n = useI18n();
import projectsSvg from '@/assets/svg/projets.svg'; import projectsSvg from '@/assets/svg/projets.svg';
import aiSvg from '@/assets/svg/skills/AI.svg' import skillsSvg from '@/assets/svg/skills.svg'
const features = [{ const features = [{
title: i18n.t("home.features.projects.title"), title: i18n.t("home.features.projects.title"),
@@ -26,10 +26,10 @@
picture: projectsSvg, picture: projectsSvg,
link: "#" link: "#"
},{ },{
title: i18n.t("home.features.ai.title"), title: i18n.t("home.features.skills.title"),
desc: i18n.t("home.features.ai.desc"), desc: i18n.t("home.features.skills.desc"),
buttonText: i18n.t("home.features.ai.buttonText"), buttonText: i18n.t("home.features.skills.buttonText"),
picture: aiSvg, picture: skillsSvg,
link: "#" link: "#"
}]; }];
</script> </script>