From 00731ea55baf00dcdcd0db7f66a8464c9557d9a2 Mon Sep 17 00:00:00 2001 From: LJ5O <75009579+LJ5O@users.noreply.github.com> Date: Tue, 25 Mar 2025 19:41:23 +0100 Subject: [PATCH] Added svg pictures on skills page --- src/assets/localization/en/localization.json | 51 ++++++++++++-------- src/views/SkillsView.vue | 47 +++++++++++++++--- 2 files changed, 69 insertions(+), 29 deletions(-) diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index 1610a66..4a66ba3 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -1,26 +1,35 @@ { - "home":{ - "greeting": "Hello ! I'm Kévin Taccoen !", - "occupation": { - "ai":"AI enthusiast", - "fullstack":"Full-Stack Developer", - "student":"Master's degree student" + "home":{ + "greeting": "Hello ! I'm Kévin Taccoen !", + "occupation": { + "ai":"AI enthusiast", + "fullstack":"Full-Stack Developer", + "student":"Master's degree student" + }, + "presentationTitle":"Thanks for visiting !", + "presentationText": "Hi ! I'm Kévin Taccoen, a Computer Science student currently pursuing a Master's degree at Opal Coast University, France. I'm studying a lot about new technologies, and their potential to shape the Future.
Also often playing with Artificial Intelligence, and working on projects using my skills in full-stack development, software conception or data analysis.", + "contactMe": "Are you looking to send me a message ?", + "contactButton": "Contact", + "features": { + "projects":{ + "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" }, - "presentationTitle":"Thanks for visiting !", - "presentationText": "Hi ! I'm Kévin Taccoen, a Computer Science student currently pursuing a Master's degree at Opal Coast University, France. I'm studying a lot about new technologies, and their potential to shape the Future.
Also often playing with Artificial Intelligence, and working on projects using my skills in full-stack development, software conception or data analysis.", - "contactMe": "Are you looking to send me a message ?", - "contactButton": "Contact", - "features": { - "projects":{ - "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" - }, - "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.", - "buttonText": "More about skills" - } + "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.", + "buttonText": "More about skills" } } + }, + "skills": { + "title": "Skills and knowledge", + "subtitle": "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. Here are some example of fields I already have dealed with :", + "skills":{ + "ai":{ + "desc":"I'm spending a lot of time learning AI" + } + } + } } \ No newline at end of file diff --git a/src/views/SkillsView.vue b/src/views/SkillsView.vue index 3e57cdc..dc49c5b 100644 --- a/src/views/SkillsView.vue +++ b/src/views/SkillsView.vue @@ -1,25 +1,47 @@ @@ -29,10 +51,19 @@ text-align: center; } + .content{ + width:80%; + margin: auto; + margin-bottom: 20px; + } + .factList{ width: 60%; margin: auto; margin-top: 20px; + height: fit-content; + padding-top: 20px; + padding-bottom: 20px; }